/* Fixed Submit Button Styles */
.submit-btn,
.continue-btn {
    background-color: var(--wine-primary);
    color: white !important; /* Force text color */
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 2rem !important; /* Force font size */
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: normal !important; /* Ensure text is visible */
    text-align: center;
    line-height: 1.4 !important; /* Proper line height */
    min-width: 200px; /* Ensure button has enough width */
    height: auto !important; /* Let height adjust to content */
}

.submit-btn:hover,
.continue-btn:hover {
    background-color: #600000;
    color: white !important;
}

.cancel-btn,
.exit-btn {
    background-color: #6c757d;
    color: white !important;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 2rem !important;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 1.4 !important;
    min-width: 200px;
    height: auto !important;
}

.cancel-btn:hover,
.exit-btn:hover {
    background-color: #5a6268;
    color: white !important;
}
