/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 04:46:30 */
/* --- Custom Button Color and Centering --- */

/* Targets the parent column to center its content */
.col-md-12 {
    text-align: center !important; /* This will center inline-block children like our button */
}

/* Targets the specific "Go Back To Dashboard" button */
.checkout-dashboard-bt {
    background-color: #DAA520 !important; /* The color from your image */
    border-color: #DAA520 !important;     /* Ensure the border also matches */
    color: #FFFFFF !important;            /* Keep the text white for good contrast */
    
    padding: 10px 20px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    display: inline-block !important; /* Important for text-align: center to work */

    /* Ensure it's not taking up full width and can be centered */
    width: auto !important;
    margin: 0 auto !important; /* Combined with text-align: center on parent for robustness */
}

/* Hover state */
.checkout-dashboard-bt:hover {
    background-color: #C28E1F !important; /* Slightly darker on hover */
    border-color: #C28E1F !important;
}