/* static/css/main.css */

/* General styles */
body {
    background-color: #ffffff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif; /* Clean and modern font */
    color: #355; /* Dark gray for better readability */
    background-color: #f8f9fa; /* Light gray background for a modern look */
}

.container {
    max-width: 80%;
    margin: 0 auto; /* Centers horizontally */
    text-align: left; /* Ensures all content aligns */
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px;
    font-size: 1rem;
    color: #011d3d;
}

/* Targeting the specific list in User's Manual */
.container ul {
    list-style: none;
    padding-left: 10px;
    margin-left: 0;
}

.container ul li {
    list-style-type: none;
    margin-left: 10px;
    padding-left: 0;
}

.container h2 {
    font-size: 2rem; /* Increase font size */
    font-weight: 700; /* Make it bold */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    text-align: center; /* Center align */
    margin-bottom: 15px;
    border-bottom: 1px solid #009688;
    display: block;
    width: 100%; /* Ensure full width */

    /* 🔥 Gradient Text Effect */
    background: linear-gradient(to right, #003c8f, #009688);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Hide default text color */
}


