/* General Page Style */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px;
    background-color: #f4f6f8;
    color: #333;
}

h1, h2, h3 {
    color: #1a1a1a;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    text-align: left;
}

th {
    background-color: #001f4d;
    color: #ffcc00;
    text-transform: uppercase;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Form Styles */
form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

label {
    display: block;
    margin: 12px 0 6px;
    font-weight: 600;
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="number"]:focus,
select:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 5px rgba(0,102,204,0.3);
}

/* Button Styles */
button,
input[type="submit"] {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    margin-top: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
    background-color: #004999;
}

/* Link Styling */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Image Styling */
img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    table, th, td {
        font-size: 14px;
    }

    input[type="text"], select {
        font-size: 14px;
    }

    button, input[type="submit"] {
        width: 100%;
        padding: 12px;
    }
}
