/* General styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #CDCDCD;
    margin: 0;
    padding: 20;
}

/* Header and Navigation styles */
header {
    background-color: #003333;
    color: white;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flag-icon {
    margin-left: 8px; /* Adds spacing between the text and flag */
    width: 50px;      /* Adjust size of the flag */
    height: auto;     /* Keep aspect ratio */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px; /* Add space between menu items */
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.3s ease-in-out;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: #66CC99;
    color: #0000CC;
}

/* Centering content */
.content4 {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px 40px 100px 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Table of Contents Styles */
.table-of-contents {
    background-color: white;
    padding: 20px;
    margin-bottom: 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #66CC33;
}

.table-of-contents h1 {
    color: #003333;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 2.5em;
}

.table-of-contents ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: #003333;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    background-color: #C0C9D8;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.table-of-contents a:hover {
    background-color: #66CC33;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* Table of Contents Styles */


/* Footer styles */
footer {
    display: flex;
    align-items: center; /* Centers content vertically */
    justify-content: center; /* Centers content horizontally */
    text-align: center;
    height: 40px;
    background-color: #333;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0; /* Reset margin to ensure proper centering */
    padding: 0 10px; /* Adjust padding if necessary */
}

/* Add this to your existing CSS file or create a new one (e.g., style.css) */
.cart-class {
    font-weight: bold; /* Make it stand out */
    color: #66CC33; /* Optional: change the color to make it stand out */
    margin-left: 50px; /* Add spacing to push it to the right */
}

/* Hover effect */
.cart-class:hover {
    background-color: #9933FF; /* Change color to green on hover */
    color: white;
}

/* Style for the Email Roster logo */
.logo {
    float: left;
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 30px;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    text-decoration: none;
    color: white;
}



.microsoft-store {
    background-color: #0078d7; /* Microsoft's brand blue color */
}

.microsoft-store:hover {
    background-color: #0066b4; /* Darker blue on hover */
}

.download-button.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}