/* General Styles
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2 {
    text-align: center;
    color: #006600;
}

 Links
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

 Header Styles 
header {
    background: #205e9c;
    color: white;
    padding: 1rem;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

header img {
    max-width: 100%;
    height: auto;
}

 Footer Styles 
footer {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

 Main Content 
main {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

main.transparent {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

Table Styles
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #006600;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

 Buttons 
button, .btn {
    display: inline-block;
    background-color: #006600;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover, .btn:hover {
    background-color: #004d00;
    transform: scale(1.05);
}

 Forms 
form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin: 1rem 0 0.5rem;
    font-weight: bold;
}

form input[type="text"], form input[type="password"], form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button[type="submit"] {
    width: 100%;
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

 Lists 
ul {
    list-style: none;
    padding: 0;
}

ul li {
    display: inline-block;
    margin: 0 10px;
}

ul li a {
    color: #ffcc80;
    font-weight: bold;
}

ul li a:hover {
    color: #ffc107;
}

 Specific Pages 
main {
    background: url('../image.png') no-repeat center center fixed;
    background-size: cover;
}
 */

 body {
    /* background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover; */
    color: #fff;
}

.custom-card {
    background-color: #fdf7eb; /* Light beige background similar to the example */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border: 1px solid #e9e2cc; /* Light border */
    border-radius: 8px; /* Rounded corners */
    padding: 20px;
}

.shadow-hr {
    border: none; /* Removes default border */
    height: 1px; /* Sets the height of the line */
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent); /* Adds a shadow effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for the line */
}
.btn{
    background-color: #003865;
}