/* --- Donation Form --- */
.dp-donation-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#dp-public-donations-table thead th {
    background-color: #f2782f;
    color: #ffffff;
    font-weight: 600;
}

.dp-donation-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.dp-donation-form input[type="text"],
.dp-donation-form input[type="email"],
.dp-donation-form input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}

.dp-donation-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #f2782f;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.dp-donation-form input[type="submit"]:hover {
    background-color: #005177;
}

/* --- Donation Table --- */
#dp-donations-table_wrapper {
    max-width: 900px;
    margin: 30px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#dp-donations-table {
    width: 100% !important;
    border-collapse: collapse;
    background: #fff;
}

#dp-donations-table th {
    background-color: #BB6A39;
    color: #fff;
    padding: 10px;
    text-align: left;
}

#dp-donations-table td {
    padding: 10px;
    border-bottom: 1px solid #e1e1e1;
}

#dp-donations-table tr:hover {
    background-color: #f1f1f1;
}

/* DataTables pagination buttons */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: #0073aa;
    color: white !important;
    border-radius: 4px;
    margin: 2px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #005177;
    color: white !important;
}

/* Search box style */
.dataTables_filter input {
    padding: 6px;
    margin-left: 4px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
