/**
 * Magex_Revocation – Revocation form styles
 * Plain CSS is used here because files in view/frontend/web/css are served
 * directly by Magento and are not processed by the Hyvä Tailwind build.
 */

/* Footer button */
.magex-revocation-footer {
    text-align: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.magex-revocation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    border: 1px solid #9ca3af;
    border-radius: 0.25rem;
    color: #4b5563;
    text-decoration: none;
    background-color: #fff;
    transition: color 200ms, background-color 200ms, border-color 200ms;
}

.magex-revocation-btn:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

/* Form */
.magex-revocation-form {
    padding: 1.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: #f9fafb;
}

.magex-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    line-height: 1.5rem;
    background-color: #fff;
    transition: color 150ms, background-color 150ms, border-color 150ms, box-shadow 150ms;
}

.magex-input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #3b82f6;
}

.magex-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 0;
    border-radius: 0.375rem;
    background-color: #1d4ed8;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 200ms, color 200ms;
}

.magex-submit-btn:hover {
    background-color: #1e40af;
}

.magex-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alert states */
.magex-alert {
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.magex-alert--success {
    border: 1px solid #4ade80;
    background-color: #dcfce7;
    color: #166534;
}

.magex-alert--error {
    border: 1px solid #f87171;
    background-color: #fee2e2;
    color: #991b1b;
}
