/* Modern Color Palette - Red Theme */
:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #ef4444;
    --secondary-color: #fef2f2;
    --accent-color: #f97316;
    --success-color: #10b981;
    --error-color: #dc2626;
    --border-color: #e2e8f0;
    --border-color-hover: #cbd5e1;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --input-bg: #ffffff;
    --input-focus-bg: #fef2f2;
    --section-bg: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
}

.rm-form {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

/* Section Styling */
.rm-form>div[style*="border"] {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 40px !important;
    box-shadow: none !important;
    transition: none;
    position: relative;
    overflow: visible;
}

.rm-form h4,
.rm-form h5 {
    margin: 40px 0 40px 0;
    padding: 0 0 16px 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 3px solid var(--primary-color);
    display: block;
    position: relative;
    background: transparent;
}

.rm-form h4:first-child,
.rm-form h5:first-child {
    margin-top: 0;
    margin-bottom: 40px;
}

/* Label Styling */
.rm-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

/* Prevent any pseudo-elements from adding asterisks */
.rm-form label::before,
.rm-form label::after {
    content: none !important;
    display: none !important;
}

.rm-form label .required-asterisk {
    color: var(--error-color);
    font-weight: 600;
}

/* Ensure only the span asterisk is visible */
.rm-form label .required-asterisk::before,
.rm-form label .required-asterisk::after {
    content: none !important;
    display: none !important;
}

.rm-form .form-group {
    margin-bottom: 24px;
    position: relative;
}

/* Input Field Styling */
.rm-form input[type="text"],
.rm-form input[type="email"],
.rm-form input[type="date"],
.rm-form input[type="password"],
.rm-form input[type="file"],
.rm-form select,
.rm-form textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    border: 2px solid #ccc !important;
    border-radius: 10px !important;
    background-color: var(--input-bg) !important;
    color: var(--text-primary) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: inherit !important;
    line-height: 1.5 !important;
}

.rm-form input::placeholder {
    color: var(--text-muted);
    font-size: 14px;
}

.rm-form input:hover,
.rm-form select:hover,
.rm-form textarea:hover {
    border-color: #999 !important;
}

.rm-form input:focus,
.rm-form select:focus,
.rm-form textarea:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    background-color: var(--input-focus-bg) !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
    transform: translateY(-1px) !important;
}

.rm-form input:focus::placeholder {
    color: var(--text-secondary) !important;
}

/* Select Dropdown */
.rm-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.rm-form select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* File Input Styling */
.rm-form input[type="file"] {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}

.rm-form input[type="file"]::file-selector-button {
    padding: 8px 16px;
    margin-right: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.rm-form input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Helper Text */
.rm-form p {
    margin: 6px 0 0 0;
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Password Block */
.rm-new-user-block {
    background: linear-gradient(135deg, #fef3f2 0%, #fef9f8 100%);
    border: 2px solid #fee2e2;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.rm-new-user-block::before {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* Submit Button */
.rm-form button[type="submit"],
.rm-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    margin-top: 16px;
}

.rm-form button[type="submit"]:hover,
.rm-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.rm-form button[type="submit"]:active,
.rm-submit-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.rm-form button[type="submit"]:disabled,
.rm-submit-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Date Input */
.rm-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: opacity(0.6);
    transition: filter 0.3s ease;
}

.rm-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: opacity(1);
}


/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rm-form {
    animation: slideIn 0.5s ease-out;
}

.form-group {
    animation: slideIn 0.3s ease-out backwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.05s;
}

.form-group:nth-child(2) {
    animation-delay: 0.1s;
}

.form-group:nth-child(3) {
    animation-delay: 0.15s;
}

.form-group:nth-child(4) {
    animation-delay: 0.2s;
}

.form-group:nth-child(5) {
    animation-delay: 0.25s;
}

.form-group:nth-child(6) {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rm-form {
        max-width: 100%;
        padding: 32px;
        margin: 30px 15px;
    }

    .form-row {
        gap: 15px;
    }

    .form-row .form-group {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .rm-form {
        margin: 20px 0;
        padding: 20px;
    }

    .rm-form>div[style*="border"] {
        padding: 0 !important;
        border-radius: 0 !important;
    }

    .rm-form h4,
    .rm-form h5 {
        margin: 32px 0 32px 0;
        padding: 0 0 12px 0;
        font-size: 20px;
    }

    .rm-form h4:first-child,
    .rm-form h5:first-child {
        margin-top: 0;
        margin-bottom: 32px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-row .form-group {
        min-width: 100%;
    }

    .rm-form button[type="submit"],
    .rm-submit-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .rm-form {
        margin: 15px 0;
        padding: 16px;
    }

    .rm-form h4,
    .rm-form h5 {
        margin: 24px 0 24px 0;
        font-size: 18px;
    }

    .rm-form h4:first-child,
    .rm-form h5:first-child {
        margin-bottom: 24px;
    }

    .rm-form input[type="text"],
    .rm-form input[type="email"],
    .rm-form input[type="date"],
    .rm-form input[type="password"],
    .rm-form select,
    .rm-form textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    .rm-form label {
        font-size: 13px;
    }

    .rm-form button[type="submit"],
    .rm-submit-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .rm-password-toggle {
        top: 2px !important;
        width: 36px;
        height: 36px;
    }

    .rm-password-toggle svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .rm-form {
        padding: 12px;
        margin: 10px 0;
    }

    .rm-form>div[style*="border"] {
        padding: 0 !important;
    }

    .rm-form h4,
    .rm-form h5 {
        margin: 20px 0 20px 0;
        padding: 0 0 10px 0;
        font-size: 16px;
    }

    .rm-form h4:first-child,
    .rm-form h5:first-child {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .rm-form input[type="text"],
    .rm-form input[type="email"],
    .rm-form input[type="date"],
    .rm-form input[type="password"],
    .rm-form select,
    .rm-form textarea {
        font-size: 13px;
        padding: 8px 10px;
    }

    .rm-form label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .rm-form p {
        font-size: 12px;
    }

    .rm-form button[type="submit"],
    .rm-submit-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .rm-new-user-block {
        padding: 16px;
    }

    .rm-password-toggle {
        top: 1px !important;
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .rm-password-toggle svg {
        width: 16px;
        height: 16px;
    }
}

/* Password toggle & strength */
.rm-password-wrap {
    position: relative;
    display: block;
}

.rm-password-wrap input[type="password"],
.rm-password-wrap input[type="text"] {
    width: 100% !important;
    padding-right: 50px !important;
    display: block;
}

.rm-password-toggle {
    position: absolute !important;
    right: 8px !important;
    top: 30px !important;
    transform: none !important;
    background: none !important;
    border: none !important;
    color: #000 !important;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 10;
    margin: 0;
    outline: none !important;
    box-shadow: none !important;
}
.pet-rm-password-toggle {
    position: absolute !important;
    right: 8px !important;
    top: 8px !important;
    transform: none !important;
    background: none !important;
    border: none !important;
    color: #000 !important;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 10;
    margin: 0;
    outline: none !important;
    box-shadow: none !important;
}

.rm-password-toggle svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.rm-password-strength {
    display: inline-block;
    margin-left: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.rm-password-strength.weak {
    color: #d63638
}

.rm-password-strength.medium {
    color: #f59e0b
}

.rm-password-strength.strong {
    color: var(--success-color)
}

/* field invalid */
.rm-invalid {
    border-color: var(--error-color) !important;
}

.rm-error {
    color: var(--error-color);
    margin-top: 6px
}

/* form-level error containers - top and bottom */
.rm-form-errors-top {
    display: none;
    background: linear-gradient(90deg, rgba(254, 243, 242, 1), rgba(255, 250, 250, 1));
    border: 1px solid rgba(220, 38, 38, 0.12);
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.rm-form-errors-top .rm-error {
    font-size: 14px;
    color: var(--primary-dark);
    margin: 6px 0
}

/* Modal button styles */
.rm-pet-modal-btn {
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rm-pet-modal-btn.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: 2px solid var(--primary-color);
}

.rm-pet-modal-btn.primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.rm-pet-modal-btn.secondary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #475569;
    border: 2px solid #cbd5e1;
}

.rm-pet-modal-btn.secondary:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Modal overlay styles */
.rm-pet-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease-out;
}

.rm-pet-modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rm-pet-modal-header {
    padding: 24px 32px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
}

.rm-pet-modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.025em;
}

.rm-pet-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin: -8px -8px -8px 0;
}

.rm-pet-modal-close:hover {
    background: #f1f5f9;
    color: #334155;
    transform: scale(1.05);
}

.rm-pet-modal-body {
    padding: 32px;
    line-height: 1.6;
}

/* Modal animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal content styling */
.rm-pet-modal-body h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.rm-pet-modal-body p {
    margin: 0 0 20px 0;
    color: #6b7280;
    font-size: 15px;
}

.rm-pet-modal-body .info-grid {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.rm-pet-modal-body .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.rm-pet-modal-body .info-item strong {
    color: #374151;
    font-weight: 600;
}

.rm-pet-modal-body .info-item span {
    color: #6b7280;
}

/* Button container */
.rm-pet-modal-body .button-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Note styling */
.rm-pet-modal-body .modal-note {
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 640px) {
    .rm-pet-modal-content {
        max-width: 95vw;
        margin: 20px;
    }
    
    .rm-pet-modal-header {
        padding: 20px 24px 16px;
    }
    
    .rm-pet-modal-header h2 {
        font-size: 20px;
    }
    
    .rm-pet-modal-body {
        padding: 24px 20px;
    }
    
    .rm-pet-modal-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .button-container {
        flex-direction: column;
        gap: 16px;
    }
}

/* Modal button styles */
.rm-pet-modal-btn {
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rm-pet-modal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.rm-pet-modal-btn.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: 2px solid var(--primary-color);
}

.rm-pet-modal-btn.primary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.rm-pet-modal-btn.secondary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #475569;
    border: 2px solid #cbd5e1;
}

.rm-pet-modal-btn.secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Modal overlay styles */
.rm-pet-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease-out;
}

.rm-pet-modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rm-pet-modal-header {
    padding: 24px 32px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
}

.rm-pet-modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.025em;
}

.rm-pet-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin: -8px -8px -8px 0;
}

.rm-pet-modal-close:hover {
    background: #f1f5f9;
    color: #334155;
    transform: scale(1.05);
}

.rm-pet-modal-body {
    padding: 32px;
    line-height: 1.6;
}

/* Modal animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal content styling */
.rm-pet-modal-body h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.rm-pet-modal-body p {
    margin: 0 0 20px 0;
    color: #6b7280;
    font-size: 15px;
}

.rm-pet-modal-body .info-grid {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.rm-pet-modal-body .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.rm-pet-modal-body .info-item strong {
    color: #374151;
    font-weight: 600;
}

.rm-pet-modal-body .info-item span {
    color: #6b7280;
}

/* Button container */
.rm-pet-modal-body .button-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Note styling */
.rm-pet-modal-body .modal-note {
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 640px) {
    .rm-pet-modal-content {
        max-width: 95vw;
        margin: 20px;
    }
    
    .rm-pet-modal-header {
        padding: 20px 24px 16px;
    }
    
    .rm-pet-modal-header h2 {
        font-size: 20px;
    }
    
    .rm-pet-modal-body {
        padding: 24px 20px;
    }
    
    .rm-pet-modal-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .button-container {
        flex-direction: column;
        gap: 16px;
    }
}
