body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f2f5; /* Light background color */
}

.grid-container {
    display: grid;
    grid-template-areas: 
        "header header header"
        "sidebar main main";
    grid-template-rows: 100px 1fr;
    grid-template-columns: 350px 1fr 1fr;
    height: 100vh;
}

/* Header Styling */
.header {
    grid-area: header;
    background-color:  gold;
    color:  #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Increase the size of all icons inside the header */
.header .material-icons-outlined {
    font-size: 36px; /* Adjust the size as needed */
}

/* Move the search icon to the left */
.header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

/* Center the dashboard text */
.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 1.5em;
    letter-spacing: 1px;
}

/* Right section remains the same */
.header-right {
    display: flex;
    align-items: center;
}

/* Sidebar Styling */
#sidebar {
    grid-area: sidebar;
    background-color: #333; /* Dark background for sidebar */
    color: red;
    padding: 0; /* Remove padding to align content to the extreme left */
    transition: transform 0.3s ease;
    transform: translateX(0);
}

#sidebar.active {
    transform: translateX(-100%);
}

.sidebar-title {
    font-size: 2em;
    color: #d98d8d; /* Yellow color for brand */
    text-align: left; /* Aligns text to the left */
    padding: 20px; /* Add padding to the sidebar title for spacing */
}

/* Large Mood Icon */
.mood-icon {
    font-size: 48px !important; /* Forces the size change */
    vertical-align: middle;
}

.sidebar-list {
    padding-left: 0; /* Ensure the list starts from the left */
}

.sidebar-list-item {
    padding: 15px 10px;
    list-style: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 25px;
    text-align: left;
}

.sidebar-list-item a {
    color: #d98d8d;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px; /* Slight padding for the links */
}

.sidebar-list-item a:hover {
    background-color: #555; /* Slightly lighter on hover */
}

/* Main Container Styling */
.main-container {
    grid-area: main;
    padding: 20px;
    background-color: #e8f5e9; /* Light green background */
}

/* Main Title Styling */
.main-title h2 {
    color: beige; /* Dark green color for main title */
    margin-bottom: 20px;
}

/* Main Cards Styling */
.main-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.card {
    background: powderblue;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card h2 {
    color: #1976d2; /* Blue color for card headings */
}

.card span {
    color: #ff6f00; /* Orange color for icons */
}

/* Product Section Styling */
.products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card {
    background-color: whitesmoke; /* Light orange background */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-description {
    color: #bf360c; /* Dark orange color */
}

.product-button {
    background-color: #ff6f00;
    color: rgb(189, 236, 93);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-button:hover {
    background-color: #e65100; /* Darker orange on hover */
}

/* Social Media Section */
.social-media {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-media-app {
    display: flex;
    align-items: center;
    background-color: peachpuff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-icon {
    font-size: 40px;
    padding: 10px;
    margin-right: 15px;
    border-radius: 50%;
}

.text-secondary {
    color: #757575; /* Grey color */
}

.text-blue {
    color: rgb(29, 38, 154);
}

.background-blue {
    background-color: rgb(29, 38, 154);
}

.text-red {
    color: rgb(213, 0, 0);
}

.background-red {
    background-color: rgb(213, 0, 0);
}

.text-green {
    color: rgb(46, 125, 50);
}

.background-green {
    background-color: rgb(46, 125, 50);
}

.text-orange {
    color: rgb(255, 111, 0);
}

.background-orange {
    background-color: rgb(255, 111, 0);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "header"
            "main";
    }

    #sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 250px;
        transform: translateX(-100%);
        z-index: 1000;
    }

    #sidebar.active {
        transform: translateX(0);
    }

    .main-container {
        grid-area: main;
        margin-left: 0;
    }

    .menu-icon {
        display: block;
    }
}
