/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body Styling */
body {
    background-color: #ffffff;
    color: #333;
    font-size: 16px;
}



/* General Sections */
section {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Headings */
h2 {
    color: #007bff;
    font-size: 24px;
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    margin-top: 15px;
    color: #0056b3;
}

/* Notice Lists */
ul {
    list-style-type: none;
}

ul li {
    padding: 8px 0;
}

ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

ul li a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* "Newly Uploaded" Tag */
.new {
    color: red;
    font-weight: bold;
    margin-left: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #343a40;
    color: white;
}

footer a {
    color: #ffdd57;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    section {
        width: 95%;
        padding: 15px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }
}
