body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #181818;
    color: #fff;
}

.sidebar {
    width: 240px;
    background-color: #202020;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.sidebar .logo {
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

.sidebar .logo i {
    font-size: 24px;
    color: #ff0000;
    margin-right: 10px;
}

.sidebar .logo span {
    font-size: 18px;
    font-weight: 500;
}

.sidebar .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .menu li {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.sidebar .menu li.active {
    background-color: #383838;
}

.sidebar .menu li i {
    margin-right: 10px;
}

.sidebar .menu li span {
    font-size: 14px;
}

.main-content {
    margin-left: 240px;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.search-icon {
    position: absolute;
    left: 10px;
    color: #bbb;
    font-size: 16px;
}

.search-bar {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border-radius: 20px;
    border: 1px solid #444;
    background-color: #333;
    color: #eee;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-bar::placeholder {
    color: #aaa;
}

.search-bar:focus {
    border-color: #666;
}

.analytics-header {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 500;
}

.tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.tab-container {
    display: flex;
    gap: 15px;
}

.tabs .tab {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #aaa;
}

.tabs .tab.active {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.overview {
    margin-top: 20px;
}

.overview .summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.overview .summary .card {
    background-color: #202020;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    margin-right: 20px;
    text-align: center;
}

.overview .summary .card:last-child {
    margin-right: 0;
}

.overview .summary .card .value {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.overview .summary .card .description {
    font-size: 14px;
    color: #aaa;
}

.overview .chart {
    background-color: #202020;
    padding: 20px;
    border-radius: 8px;
}

.overview .chart .chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.overview .chart .chart-header .see-more {
    background-color: #383838;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    color: #fff;
    cursor: pointer;
}

.overview .chart .chart-graph {
    height: 200px;
    background-color: #121212;
    border-radius: 4px;
}

.profile {
    text-align: center;
    margin-bottom: 20px;
}

.profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: block; /* Ensures the image is treated as a block element */
    margin: 0 auto 10px; /* Centers the image and adds margin below */
}

.profile-name {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-top: 0; /* Ensures no extra margin above the text */
}
.logo {
    display: flex;
    align-items: center;
    gap: 5px; /* Reduce the gap to bring "Studio" closer to the logo */
    color: white;
    font-size: 18px;
}

.fab.fa-youtube {
    font-size: 32px; /* Increase the size of the YouTube logo */
    
    border-radius: 50%; /* Make the background circular */
    padding: 5px; /* Add padding to ensure the background covers the cut-out */
    color: red; /* Set the icon color to red */
}

.hamburger-menu {
    font-size: 24px; /* Size of the hamburger icon */
    cursor: pointer; /* Change cursor to pointer to indicate it's clickable */
    color: white !important; /* Set the color to white and use !important to override other styles */
}

.card {
    position: relative; /* Position relative to contain the info card */
    padding: 10px;
    background-color: #222; /* Dark background for the card */
    border-radius: 8px;
    transition: background-color 0.3s;
}

.card:hover {
    background-color: #333; /* Slightly lighter background on hover */
}

.info-card {
    position: absolute;
    top: -140%; /* Position above the card */
    left: 0;
    width: 270px; /* Set a fixed width for the info card */
    background-color: #333; /* Dark background for the info card */
    color: #fff; /* White text color */
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
    z-index: 10; /* Ensure it appears above other elements */
    opacity: 0; /* Start with opacity 0 */
    transition: opacity 0.3s ease 0.5s; /* Add delay to the opacity transition */
    pointer-events: none; /* Prevent interaction when hidden */
}

.card:hover .info-card {
    opacity: 1; /* Fade in the info card */
    pointer-events: auto; /* Allow interaction when visible */
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-label {
    color: #aaa;
}

.info-value {
    color: #fff;
}

.date-range {
    text-align: right;
    color: #aaa;
}

.date {
    font-size: 12px;
}

.status {
    font-size: 16px;
    color: #fff;
}