/* CSS Custom Properties */
:root {
    --color-bg-light: #f8f5f2;
    --color-bg-warm: #f0ebe4;
    --color-bg-card: rgba(255, 255, 255, 0.95);
    --color-primary: #b8956f;
    --color-primary-light: #d4b896;
    --color-primary-dark: #96734d;
    --color-rose: #c48f8f;
    --color-rose-light: #dbb5b5;
    --color-sage: #94a78a;
    --color-lavender: #b5a6c7;
    --color-text: #3d3d3d;
    --color-text-muted: #666666;
    --color-text-dark: #2a2a2a;
    --color-accent: #b8956f;
    --color-accent-glow: rgba(184, 149, 111, 0.25);
    --color-border: rgba(184, 149, 111, 0.3);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-light);
    color: var(--color-text);
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Soft Gradient Background */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.stars {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(196, 143, 143, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(181, 166, 199, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 80%, rgba(148, 167, 138, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 70%, rgba(184, 149, 111, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-warm) 100%);
    z-index: -2;
}

.stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 165, 165, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(197, 184, 212, 0.06) 0%, transparent 25%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.twinkling {
    background: transparent;
    z-index: -1;
}

.twinkling::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 90% 10%, rgba(196, 166, 139, 0.08) 0%, transparent 30%),
        radial-gradient(ellipse at 5% 90%, rgba(168, 181, 160, 0.06) 0%, transparent 35%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Card */
.card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-rose-light);
    border-radius: 32px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 60px -12px rgba(180, 140, 100, 0.18),
        0 10px 30px -10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-rose-light),
        var(--color-primary-light) 25%, 
        var(--color-lavender) 50%, 
        var(--color-sage) 75%,
        var(--color-rose-light)
    );
    opacity: 0.8;
    border-radius: 32px 32px 0 0;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--color-accent-glow) 0%, transparent 50%);
    opacity: 0.1;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 1;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.tarot-symbol {
    font-size: 2.5rem;
    color: var(--color-rose);
    margin-bottom: 20px;
    letter-spacing: 0.5rem;
    opacity: 0.85;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: var(--color-text-dark);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

/* Description */
.description {
    margin-bottom: 40px;
}

.description p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    text-align: center;
}

.description p:first-child {
    font-size: 1.15rem;
    color: var(--color-text);
    font-style: italic;
}

.features-list {
    list-style: none;
    margin-top: 25px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(196, 143, 143, 0.1) 0%, rgba(181, 166, 199, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(196, 143, 143, 0.2);
}

.features-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.features-list .bullet {
    color: var(--color-rose);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Pricing Section */
.pricing-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.price-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-rose-light);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.price-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--color-rose);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(196, 143, 143, 0.25);
}

.price-label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.price .currency {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text-muted);
    vertical-align: super;
}

.price-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    min-height: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    width: 100%;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-rose) 0%, #c9a0a0 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(196, 143, 143, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c9a0a0 0%, var(--color-rose) 100%);
    box-shadow: 0 6px 25px rgba(196, 143, 143, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-rose);
}

.btn-secondary:hover {
    background: rgba(196, 143, 143, 0.12);
    border-color: var(--color-rose);
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 165, 165, 0.2);
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.email-link:hover {
    color: var(--color-rose);
}

.email-link svg {
    opacity: 0.7;
}

.email-link:hover svg {
    opacity: 1;
}

/* Footer */
.footer {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-rose);
}

.footer-links .divider {
    color: var(--color-rose-light);
    font-size: 0.75rem;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(122, 122, 122, 0.6);
}

/* Legal Pages Styles */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-page .card {
    padding: 40px;
}

.legal-page h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    text-align: center;
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-text-dark);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 165, 165, 0.2);
}

.legal-page p, .legal-page li {
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.legal-page ul, .legal-page ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page strong {
    color: var(--color-text);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-rose);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.back-link:hover {
    color: var(--color-rose-light);
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* Contact Page */
.contact-info {
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.08) 0%, rgba(197, 184, 212, 0.06) 100%);
    border: 1px solid rgba(212, 165, 165, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 165, 165, 0.12);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-label {
    flex: 0 0 200px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.9rem;
}

.contact-info-value {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 640px) {
    .container {
        padding: 20px 15px;
    }
    
    .card {
        padding: 30px 20px;
        border-radius: 24px;
    }
    
    .tarot-symbol {
        font-size: 2rem;
        letter-spacing: 0.3rem;
    }
    
    .features-list {
        padding: 20px;
    }
    
    .pricing-section {
        grid-template-columns: 1fr;
    }
    
    .price-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links .divider {
        display: none;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info-label {
        flex: none;
    }
}

/* Focus States for Accessibility */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--color-rose);
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .stars, .twinkling, .card-glow {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ===================================
   MODAL STYLES
   =================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--color-bg-card);
    border-radius: 24px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    padding: 5px;
}

.modal-close:hover {
    color: var(--color-rose);
}

.modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 10px;
}

.modal-tariff-name {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.modal-price {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 25px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-group .required {
    color: var(--color-rose);
}

.form-group input[type="email"],
.form-group input[type="text"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1.5px solid var(--color-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-rose);
    box-shadow: 0 0 0 3px rgba(196, 143, 143, 0.15);
}

.form-group input::placeholder {
    color: #aaa;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-rose);
    cursor: pointer;
}

.checkbox-group a {
    color: var(--color-rose);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Form Error */
.form-error {
    background: rgba(196, 143, 143, 0.15);
    border: 1px solid var(--color-rose);
    color: #a05555;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-error.visible {
    display: block;
}

/* Turnstile container */
#turnstile-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 65px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.btn-loader {
    display: none;
    align-items: center;
    gap: 8px;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Payment Secure Badge */
.payment-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.payment-secure svg {
    color: var(--color-sage);
}

/* Price UAH display */
.price-uah {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

/* ===================================
   SUCCESS PAGE STYLES
   =================================== */

.hidden {
    display: none !important;
}

.status-section {
    text-align: center;
}

.status-section h1 {
    margin-bottom: 15px;
}

.status-text {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.status-hint {
    font-size: 0.9rem;
    color: rgba(102, 102, 102, 0.8);
    margin-bottom: 25px;
}

.status-hint a {
    color: var(--color-primary);
}

/* Checking State */
.status-checking {
    padding: 40px 20px;
}

.status-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(148, 167, 138, 0.2);
    border-top-color: var(--color-sage);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
}

/* Success State */
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-sage) 0%, #7a9970 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Receipt Section */
.receipt-section {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(148, 167, 138, 0.1) 0%, rgba(181, 166, 199, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(148, 167, 138, 0.2);
}

.receipt-section h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.receipt-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.receipt-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(148, 167, 138, 0.2);
    border-top-color: var(--color-sage);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.receipt-loading-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
}

.receipt-loading-hint {
    font-size: 0.85rem;
    color: rgba(102, 102, 102, 0.7);
    text-align: center;
    margin: 0;
}

.receipt-ready {
    text-align: center;
}

.receipt-success {
    color: var(--color-sage);
    margin-bottom: 15px;
    font-weight: 500;
}

.receipt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-sage);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.receipt-link:hover {
    background: #7a9970;
    transform: translateY(-2px);
}

.receipt-timeout {
    color: var(--color-text-muted);
    text-align: center;
}

.receipt-timeout p {
    margin-bottom: 8px;
}

/* Channel Access Section - Rose Theme */
.channel-access-section {
    margin: 30px 0;
    padding: 35px 30px;
    background: linear-gradient(135deg, rgba(196, 143, 143, 0.1) 0%, rgba(219, 181, 181, 0.15) 100%);
    border-radius: 24px;
    border: 1.5px solid rgba(196, 143, 143, 0.3);
    text-align: center;
}

.btn-channel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--color-rose) 0%, #d4a0a0 100%);
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(196, 143, 143, 0.35);
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.btn-channel:hover {
    background: linear-gradient(135deg, #d4a0a0 0%, var(--color-rose) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 143, 143, 0.5);
    color: white;
}

.btn-channel svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.channel-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.channel-hint-icon {
    font-size: 0.95rem;
}

/* Email Notice - inside channel section */
.channel-email-notice {
    margin: 16px 0 0 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.channel-email-notice strong {
    color: var(--color-rose);
}

/* Next Steps */
.next-steps {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 165, 165, 0.2);
}

.next-steps h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 165, 165, 0.1);
    text-align: left;
}

.next-steps li:last-child {
    border-bottom: none;
}

.step-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--color-rose-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-back {
    margin-top: 30px;
    display: inline-flex;
    width: auto;
}

/* Pending State */
.status-icon-pending,
.status-icon-failed {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Failed State */
.failed-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.failed-actions .btn {
    width: auto;
    min-width: 180px;
}

.btn-link {
    display: block;
    margin-top: 20px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: var(--color-rose);
}

/* Modal Responsive */
@media (max-width: 640px) {
    .modal-content {
        padding: 30px 20px;
        margin: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-price {
        font-size: 1.6rem;
    }
    
    .failed-actions {
        flex-direction: column;
    }
    
    .failed-actions .btn {
        width: 100%;
    }
}

