/* assets/css/style.css */

/* --- Form Styles --- */
.dft-form {
    border: 1px solid #e0e0e0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    max-width: 600px;
    margin: 20px auto; /* Center form slightly */
}

.dft-form-field {
    margin-bottom: 15px;
}

.dft-form-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #333;
}

.dft-form-field input[type="text"],
.dft-form-field input[type="number"],
.dft-form-field input[type="datetime-local"],
.dft-form-field select,
.dft-form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
    font-size: 1em;
}

.dft-form-field textarea {
    min-height: 80px;
    resize: vertical;
}

.dft-form-field .dft-required {
    color: red;
    margin-left: 3px;
}

.dft-form-submit input[type="submit"] {
    background-color: #0073aa; /* WP Blue */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease;
}

.dft-form-submit input[type="submit"]:hover {
    background-color: #005a87;
}

/* --- Message Styles --- */
.dft-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
}
.dft-message.dft-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.dft-message.dft-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.dft-message.dft-error ul {
    margin: 0;
    padding-left: 20px;
}

/* --- Table Styles --- */
.dft-fee-list-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.dft-fee-list-table thead tr {
    background-color: #0073aa; /* WP Blue */
    color: #ffffff;
    text-align: left;
}

.dft-fee-list-table th,
.dft-fee-list-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.dft-fee-list-table tbody tr {
    background-color: #f9f9f9;
}

.dft-fee-list-table tbody tr:nth-of-type(even) {
    background-color: #ffffff;
}

.dft-fee-list-table tbody tr:last-of-type {
    border-bottom: 2px solid #0073aa;
}

.dft-fee-list-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Responsive Table Adjustments (Basic) */
@media screen and (max-width: 600px) {
    .dft-fee-list-table {
        border: 0;
    }
    .dft-fee-list-table thead {
        display: none; /* Hide table header */
    }
    .dft-fee-list-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    .dft-fee-list-table td {
        display: block;
        text-align: right;
        padding-left: 50%; /* Make space for the label */
        position: relative;
        border-bottom: 1px dotted #eee;
    }
     .dft-fee-list-table td:last-child {
         border-bottom: 0;
     }
    .dft-fee-list-table td::before {
        content: attr(data-label); /* Use data-label for heading */
        position: absolute;
        left: 10px;
        width: calc(50% - 20px); /* Adjust width */
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
}

/* Add this to your existing assets/css/style.css */

/* --- AJAX Message Styles --- */
#dft-ajax-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
    display: none; /* Hidden by default, shown by JS */
}
#dft-ajax-message.dft-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
#dft-ajax-message.dft-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
#dft-ajax-message.dft-error ul { /* If errors are sent as list items */
    margin: 0;
    padding-left: 20px;
}