        body {
            font-family: 'Roboto', Arial, sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            transition: background-color 0.3s;
        }

        /* Header Styles */
        .header {
            display: flex;
            align-items: center;
            padding: 1rem 2rem;
            position: fixed;
            top: 0;
            width: 100%;
            background-color: var(--background-color);
            z-index: 1000;
        }

        .menu-icon {
            font-size: 1.5rem;
            margin-right: 1.5rem;
            cursor: pointer;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .logo i {
            color: var(--primary-color);
            margin-right: 0.3rem;
        }

        .search-bar {
            margin-left: 2rem;
            flex-grow: 1;
            max-width: 600px;
            display: flex;
        }

        .search-bar input {
            width: 100%;
            padding: 0.5rem 1rem;
            border: 1px solid #303030;
            border-radius: 20px 0 0 20px;
            background-color: var(--background-color);
            color: var(--text-color);
        }

        .search-button {
            padding: 0.5rem 1.5rem;
            border: 1px solid #303030;
            border-left: none;
            border-radius: 0 20px 20px 0;
            background-color: var(--hover-color);
            cursor: pointer;
        }
		.upload-button{
			padding: 7px;
			border-radius: 10px;
			box-shadow: 3px 3px #615c5c;

		}
		
		.upload-button a{
			text-shadow: 2px 2px #838383;
			letter-spacing: 2px;
			text-decoration: none;	
			color: inherit;
		}



        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            left: 0;
            top: 57px;
            bottom: 0;
            width: var(--sidebar-width);
            padding: 1rem;
            overflow-y: auto;
            background-color: var(--background-color);
            transition: transform 0.3s;
			font-family: Arial, sans-serif;
        }

        .sidebar.collapsed {
            transform: translateX(-100%);
        }

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 7px 10px;
    margin: 2px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

/* Hover effect */
.sidebar-item:hover {
    background-color: #f0f0f0;
    color: #000;
    transform: translateX(2px);
}

/* Active/Selected state */
.sidebar-item.active {
    background-color: #e0e0e0;
    font-weight: bold;
    color: #000;
    border-left: 3px solid #ff6b6b; /* Accent color */
}

.sidebar-item i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: #666; /* Icon color */
}

.sidebar-item:hover i,
.sidebar-item.active i {
    color: #ff6b6b; /* Icon color on hover/active */
}

.sidebar-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    width: 100%;
}

hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}


        /* Main Content */
        .main-content {
            margin-top: 57px;
            margin-left: var(--sidebar-width);
            padding: 1.5rem;
            transition: margin-left 0.3s;
        }

        .main-content.expanded {
            margin-left: 0;
        }

        /* Tabs */
        .tablist {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            overflow-x: auto;
        }

        .tab {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            background-color: var(--hover-color);
            cursor: pointer;
            white-space: nowrap;
        }

        .tab.active {
            background-color: var(--text-color);
            color: var(--background-color);
        }

        /* Video Grid */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
        }

        .video-card {
            cursor: pointer;
        }

        .thumbnail {
			position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 10px;
            background-color: #606060;
        }

        .video-length {
            position: absolute;
            bottom: 4px;
            right: 4px;
            background-color: rgba(0, 0, 0, 0.8);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
			color: #fff;
        }
		
        .video-len {
			position: absolute;
			  left: 4px;
			  bottom: 4px;
			  background-color: rgba(0, 0, 0, 0.8);
			  border-radius: 4px;
			  font-size: 0.7rem;
			  padding: 4px 8px;
			  color: #fff;

        }
		
        .video-details {
            padding: 0.8rem 0.2rem;
        }

        .video-title {
            //font-weight: bold;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-info {
            font-size: 0.9rem;
            color: #606060;
        }