/* Styles are enqueued by FundBridge_Frontend class */
/*
 * General form styling
 */
#fundbridge-donation-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fundbridge-form-group {
    margin-bottom: 15px;
}

.fundbridge-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.fundbridge-form-group input[type="number"],
.fundbridge-form-group input[type="text"],
.fundbridge-form-group input[type="email"],
.fundbridge-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't increase width */
    font-size: 16px;
}

.fundbridge-form-group input[type="number"]:focus,
.fundbridge-form-group input[type="text"]:focus,
.fundbridge-form-group input[type="email"]:focus,
.fundbridge-form-group select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
    outline: none;
}

#fundbridge-form-messages {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-weight: bold;
}

#fundbridge-form-messages.error {
    background-color: #ffe0e0;
    color: #cc0000;
    border: 1px solid #cc0000;
}

#fundbridge-form-messages.success {
    background-color: #e0ffe0;
    color: #008000;
    border: 1px solid #008000;
}

#fundbridge-donation-form button[type="submit"] {
    background-color: #0073aa;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    transition: background-color 0.3s ease;
}

#fundbridge-donation-form button[type="submit"]:hover {
    background-color: #005a87;
}

/* Admin Table Styling (if not using WP_List_Table extensively) */
.fundbridge-donations-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.fundbridge-donations-table th,
.fundbridge-donations-table td {
    border: 1px solid #e5e5e5;
    padding: 8px 10px;
    text-align: left;
}

.fundbridge-donations-table th {
    background-color: #f7f7f7;
    font-weight: bold;
    color: #32373c;
}

.fundbridge-donations-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.fundbridge-donations-table tr:hover {
    background-color: #f0f0f0;
}

.fundbridge-donations-table td.column-status {
    text-transform: capitalize;
}
