/* Shared Button Styles for Client and Admin */

.edit-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
}

.edit-btn:hover {
    background: #005a87;
}

.update-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 5px;
    font-size: 12px;
}

.update-btn:hover {
    background: #218838;
}

.cancel-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 5px;
    font-size: 12px;
}

.cancel-btn:hover {
    background: #c82333;
}

.delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
}

.delete-btn:hover {
    background: #c82333;
}

.status-select {
    margin-left: 5px;
    padding: 3px;
    font-size: 12px;
}

/* Upload form styling */
.upload-form {
    background-color: #f8f9fa;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.upload-form h3 {
    margin-top: 0;
    color: #333;
}

.upload-form input[type="submit"] {
    background: #007cba;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
}

.upload-form input[type="submit"]:hover {
    background: #005a87;
}

/* Table styling for both client and admin */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.admin-table th {
    background: #e0e0e0;
    padding: 8px;
    font-weight: bold;
}

.admin-table td {
    padding: 8px;
    border: 1px solid #dee2e6;
}

.admin-table tr:nth-child(even) {
    background: #f8f9fa;
}