body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    padding: 20px;
    margin: auto;
    max-width: 1000px;
    background-color: white;
    margin-top: 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

h2, h3 {
    color: #444;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    display: block;
    overflow-x: auto;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    min-width: 100px;
}

table th {
    background-color: #f1f1f1;
}

a {
    display: inline-block;
    margin: 10px 0;
    color: #1e88e5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

form input,
form select,
form textarea,
form button {
    display: block;
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
    max-width: 500px;
    font-size: 16px;
    box-sizing: border-box;
}

form button {
    background-color: #ff6f00
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #e65100;
}

header, footer {
    background-color: #1e88e5;
    color: white;
    text-align: center;
    padding: 15px;
}

nav a {
    color: #008000; /* green for visibility */
    font-weight: bold;
    margin: 0 10px;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #e0ffe0;
    text-decoration: underline;
}

nav a i {
    margin-right: 5px;
}

.navbar a {
    color: #333; /* Or use #333 for darker text */
    font-weight: bold;
}

.navbar a:hover {
    color: #1565c0;
}

.navbar i {
    color: #1e88e5;
    margin-right: 5px;
}


/* 📱 Mobile Responsiveness */
@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    table th, table td {
        font-size: 14px;
        padding: 6px;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav a {
        margin: 5px 0;
    }

    form input,
    form select,
    form textarea,
    form button {
        font-size: 14px;
    }
}




