/* ============================= */
/* General Styles */
/* ============================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    display: flex;
    flex-direction: column;
    
    

/*======================= */
/* Header Styles */
/* ============================= */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0044cc;
    color: white;
    padding: 15px;
}

/* ✅ Logo Container (Main Logo + Extra Logos) */
.logo-container {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between main logo and extra logos */
}

/* ✅ Main Logo Styling (Large) */
.logo img {
    width: 200px; /* Adjust main logo size */
    height: auto;
    max-width: 100%;
}

/* ✅ Extra Logos (Small Logos Aligned to the Right) */
.extra-logos {
    display: flex;
    align-items: flex-start; /* Moves logos higher */
    gap: 10px; /* Space between each logo */
    margin-top: -150px; /* Moves the small logos up */
}

/* ✅ Small Logo Styling */
.small-logo {
    width: 70px;  /* Make these much smaller */
    height: auto;
    transition: transform 0.2s ease-in-out;
}

.small-logo:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* ============================= */
/* User Info (Login/Logout Section) */
/* ============================= */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info a {
    background-color: #ff6600;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.user-info a:hover {
    background-color: #ff3300;
}

/* ============================= */
/* Sidebar Navigation Styles */
/* ============================= */
.wrapper {
    display: flex;
}

.sidebar {
    width: 75px;
    background-color: #333;
    padding: 20px;
    height: 100vh;
    color: white;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 5px;
}

.sidebar ul li a:hover {
    background-color: #555;
}

/* ============================= */
/* Main Content Section */
/* ============================= */
.content {
    flex: 1;
    padding: 20px;
}

/* ============================= */
/* Subscribe Button Styles */
/* ============================= */
.subscribe-button {
    background: linear-gradient(45deg, #ff6600, #ff3300);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin: 20px auto;
    text-align: center;
}

.subscribe-button:hover {
    background: linear-gradient(45deg, #ff3300, #cc0000);
}
