/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: #181818;
    color: #f1f1f1;
}

/* Navbar styles */
nav {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

nav.dark-mode {
    background-color: #282828 !important;
    color: #ffffff;
}

nav.light-mode {
    background-color: #ffffff;
    color: #000000;
}

.logo-text {
    transition: color 0.3s;
}

/* Input group styles */
.input-group {
    width: 300px;
}

.search-button {
    transition: background-color 0.3s, color 0.3s;
}

.search-button.dark-mode {
    background-color: #383838;
    color: #ffffff;
    border-color: #383838;
}

.search-button.light-mode {
    background-color: #ffffff;
    color: #000000;
    border-color: #cccccc;
}

/* Video player styles */
.video-player {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.main-video {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.main-video iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
}

.main-video h2,
.main-video p {
    margin-top: 15px;
    color: inherit;
    transition: color 0.3s;
}

/* Shorts and Suggestions styles */
.sidebar {
    width: 28%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shorts {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.short {
    width: 32%;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.short img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.short.dark-mode {
    background-color: #383838;
}

.suggestions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.suggestion {
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.suggestion img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.suggestion.dark-mode {
    background-color: #383838;
}

