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

.container {
    background-color: white;
    padding: 30px;
    max-width: 700px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    /* Removed flexbox to restore normal layout */
}

form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A1A1A;
}

form input[type="text"],
form input[type="password"],
form input[type="number"],
form textarea,
form select {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

button, .btn, input[type="submit"] {
    background-color: #9B854A;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover, input[type="submit"]:hover {
    background-color: #8A7842;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table thead tr {
    background-color: #f0f0f0;
}

table th, table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
}

.dashboard-table, .dashboard-table th, .dashboard-table td {
    font-size: 13px;
    padding: 6px 8px;
}

.dashboard-table img {
    max-width: 60px;
    max-height: 60px;
    border-radius: 4px;
}

.dashboard-table td:nth-child(3), /* Description */
.dashboard-table td:nth-child(7)  /* Address */ {
    /* Removed max-width and text truncation to allow full text display */
}
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

ul.flashes {
    list-style-type: none;
    padding: 0;
    margin-bottom: 15px;
}

ul.flashes li {
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 3px;
}

ul.flashes li.success {
    background-color: #d4edda;
    color: #155724;
}

ul.flashes li.danger {
    background-color: #f8d7da;
    color: #721c24;
}

a {
    color: #9B854A;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.logout-button {
    background-color: #9B854A;
    border: none;
    color: white;
    cursor: pointer;
    font: inherit;
    padding: 10px 20px;
    margin: 0;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}


.logout-button:hover {
    background-color: #8A7842;
    color: white;
    text-decoration: none;
}

form label {
    display: block;
    margin-top: 15px;
}

form input[type="text"],
form input[type="number"],
form input[type="file"],
form select,
form textarea {
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
}

form button {
    float: right;
}

.logout-container {
    margin-bottom: 15px;

}

.edit-btn {
    margin-right: 8px;
    margin-bottom: 8px;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 3px;
}
