/* ===== General ===== */

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7; /* From client_area */
    background: #f9f9f9;       /* From fm_datacheck, will override above */
    margin: 20px;              /* From fm_datacheck, overrides client_area's 0 */
    padding: 0;
    color: #333;               /* From fm_datacheck */
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    text-align: center;
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

a:hover {
    text-decoration: underline;
}

label {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
}

button {
    background-color: #c82333;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	border-radius: 4px;
}

button:hover {
    background-color: #0056b3;
}

/* ===== Containers ===== */
.container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 6px;
}

.book-container {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 2rem;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 6px;
}

/* ===== Form Base ===== */
form {
    display: flex;
    flex-direction: column;
}

.form-row {
  margin-bottom: 15px; /* space below each row */
}

input[type="email"],
input[type="password"],
input[type="file"],
select {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.action-button {
    display: inline-block;
    background-color: #c82333;     /* Match button */
    color: white;
    padding: 8px 16px;             /* Match button */
    font-size: 16px;
    font-family: Arial, sans-serif;/* Match button */
    border: none;
    border-radius: 4px;            /* Match input styling */
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.action-button:hover {
    background-color: #0056b3;     /* Match button:hover */
}

.site-header {
    display: flex;
	padding-bottom: 10px;
}

