/* Apply a modern, clean font */
body {
    font-family: 'Roboto', sans-serif;
    color: #333; /* Dark gray for text */
    background-color: #ffffff; /* Light gray background */
}

/* Style for pill-shaped buttons */
.btn {
    background-color: #ffffff; /* Modern blue color */
    color: black;
    border: none;
    border-radius: 50px; /* Makes the button pill-shaped */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    color: white;
}

/* Style for inputs and select dropdowns */
input, select {
    border: 1px solid #ced4da;
    border-radius: 50px; /* Rounded corners for input */
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    color: #495057;
    background-color: white;
    width: 100%; /* Full width for better UX */
    box-sizing: border-box;
}

/* Headings with modern styling */
h1, h2, h3, h4 {
    color: #000000; /* Blue for headings */
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
}

/* Style for tables */
table {
    border-collapse: collapse;
    width: 100%;
    border: none;
}

th, td {
    border: 1px solid #dee2e6; /* Light gray borders */
    padding: 12px;
    text-align: left;
}

th {
    background-color: #007bff;
    color: white;
    text-transform: uppercase; /* Modern table header */
}

td {
    background-color: #fff;
    color: #333;
}

table tr:nth-child(even) td {
    background-color: #f2f2f2; /* Slightly gray background for even rows */
}

