/* style.css - Simple styling for RPA Practice application */

body {
    background-color: #ffffff;
    color: #000000;
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1 {
    font-size: 22px;
}

/* Navigation links at the top of every page */
.nav-links {
    margin-bottom: 20px;
}

.nav-links a {
    margin-right: 15px;
    color: #000000;
}

/* Form styling */
form table {
    border-collapse: collapse;
}

form td {
    padding: 6px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="date"],
input[type="number"],
select {
    width: 250px;
    padding: 4px;
    border: 1px solid #000000;
}

input[type="submit"] {
    padding: 6px 16px;
    border: 1px solid #000000;
    background-color: #ffffff;
    color: #000000;
}

/* Message boxes */
.message {
    border: 1px solid #000000;
    padding: 10px;
    margin-bottom: 15px;
}

.message-success {
    border-color: #000000;
}

.message-error {
    border-color: #000000;
}

/* Patient list table */
#patient_table {
    border-collapse: collapse;
    width: 100%;
}

#patient_table th,
#patient_table td {
    border: 1px solid #000000;
    padding: 6px;
    text-align: left;
}

#patient_table th {
    background-color: #eeeeee;
}
