/* General body styling */
body {
    background-color: var(--primary-color);  /* Team's primary color */
    color: var(--text-color);  /* Team's text color */
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container for centering and layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Team Header styling */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.team-logo-container {
    text-align: center;
}

.team-logo {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.team-info {
    margin-top: 10px;
}

h1 {
    color: var(--text-color);
    font-size: 36px;
    margin-bottom: 10px;
}

/* Flexbox layout for sidebar and content */
.content-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Sidebar styling */
.sidebar {
    width: 25%;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    display: block;
    padding: 10px 15px;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.sidebar ul li a:hover {
    background-color: #007bff;  /* Change to blue on hover */
}

/* Main content section */
.main-content {
    width: 70%;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Footer styling */
.footer {
    text-align: center;
    margin-top: 40px;
}

.footer p {
    color: var(--text-color);
}
