/* FaceUp Stripe Manager Stiliai */

.fusm-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.fusm-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #111;
}

.fusm-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.fusm-card p strong {
    color: #111;
}

.fusm-status-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    display: inline-block;
}

.fusm-status-badge--active {
    background-color: #28a745; /* Žalia */
}

.fusm-status-badge--pending-cancellation {
    background-color: #fd7e14; /* Oranžinė */
}

.fusm-card .woocommerce-message {
    background-color: #fff8e1;
    border-left-color: #ffb100;
    color: #5f4c00;
    border-radius: 4px;
    margin-bottom: 25px;
}


.fusm-card button.button {
    background-color: #d9534f; /* Raudona atšaukimui */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.fusm-card button.button:hover {
    background-color: #c9302c;
    transform: translateY(-2px);
}