/* Universal Footer Button Size Fix - Make buttons half their current size on ALL pages */

/* Target footer buttons on all pages */
.footer-action-btn {
    width: 50% !important; /* Half the current width */
    transform: none !important; /* Remove any existing transforms */
    padding: 7px 10px !important; /* Half the current padding */
    font-size: 0.85rem !important; /* Slightly smaller font */
    margin-bottom: 6px !important; /* Half the current margin */
}

.footer-action-buttons {
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Ensure buttons are centered and properly sized */
.footer-action-btn.primary,
.footer-action-btn.secondary {
    width: 50% !important;
    min-width: 120px; /* Set a minimum width */
    max-width: 200px; /* Set a maximum width */
} 