/* ===================================================================
   PLUGIN STYLES (RC WITHDRAWALS - PRO DESIGN)
   File: /wp-content/plugins/rc-withdrawals/assets/app.css
=================================================================== */
.rcwd-wrapper {
    max-width: 700px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rcwd-card-pro {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #dee2e6;
    box-shadow: 0 12px 28px rgba(44, 62, 80, 0.15), 0 5px 12px rgba(44, 62, 80, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.rcwd-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.rcwd-title {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.rcwd-balance {
    font-size: 16px;
    color: #6c757d;
    white-space: nowrap;
}
.rcwd-balance strong {
    font-weight: 700;
    color: #2c3e50;
}

.rcwd-note {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
    text-align: left;
}

.rcwd-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rcwd-input-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #495057;
    margin-bottom: 5px;
    text-align: left;
}

.rcwd-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.rcwd-input-wrapper i {
    position: absolute;
    left: 15px;
    color: #adb5bd;
    font-size: 16px;
}
.rcwd-input-wrapper input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 15px 14px 45px;
    border: 1px solid #ced4da;
    border-radius: 12px;
    background-color: #fff;
    font-size: 16px;
    color: #495057;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.075);
    transition: all .2s ease-in-out;
}
.rcwd-input-wrapper input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

.rcwd-btn-pro {
    background: #007BFF;
    color: #fff;
    border: none;
    border-bottom: 4px solid #0056b3;
    border-radius: 12px;
    padding: 14px 22px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease-out;
    width: 100%;
}
.rcwd-btn-pro:hover:not(:disabled) { background-color: #0084ff; }
.rcwd-btn-pro:active:not(:disabled) { transform: translateY(2px); border-bottom-width: 2px; }
.rcwd-btn-pro:disabled { background: #adb5bd; border-bottom-color: #6c757d; cursor: not-allowed; }

.rcwd-feedback-area {
    min-height: 22px;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}
.rcwd-msg.success { color: #16a34a; }
.rcwd-msg.error { color: #dc3545; }

/* Activity List */
.rcwd-activity-header { text-align: left; margin-bottom: 15px; }
.rcwd-activity-title { font-size: 20px; font-weight: 700; color: #2c3e50; }
.rcwd-list { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.rcwd-item { display: flex; align-items: center; gap: 15px; background: #fff; padding: 12px 15px; border-radius: 10px; border: 1px solid #e9ecef; }

.rcwd-item-icon { font-size: 20px; }
.rcwd-item-details { flex-grow: 1; }
.rcwd-item-status { font-weight: 700; color: #2c3e50; }
.rcwd-item-date { font-size: 12px; color: #6c757d; }
.rcwd-item-amount { font-size: 16px; font-weight: 700; white-space: nowrap; }

/* Status Colors */
.rcwd-item.status-pending .rcwd-item-icon { color: #f59e0b; /* Amber */ }
.rcwd-item.status-pending .rcwd-item-amount { color: #f59e0b; }
.rcwd-item.status-paid .rcwd-item-icon { color: #16a34a; /* Green */ }
.rcwd-item.status-paid .rcwd-item-amount { color: #16a34a; }
.rcwd-item.status-rejected .rcwd-item-icon { color: #dc3545; /* Red */ }
.rcwd-item.status-rejected .rcwd-item-amount { color: #dc3545; text-decoration: line-through; }

.rcwd-empty-state { padding: 20px; border: 2px dashed #e9ecef; border-radius: 10px; color: #6c757d; text-align: center; }

@media (max-width: 600px) {
    .rcwd-card-pro { padding: 20px; }
    .rcwd-header { flex-direction: column; align-items: center; gap: 5px; }
}