/* SpendSnapper Bootbox Custom Styles */
/* SpendSnapper Bootbox Custom Styles */
.ss-modal .modal-content {
    font-family: 'Quicksand', sans-serif;
    border-radius: 1.25rem;
    background-color: #fff;
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.ss-modal .modal-header {
    background-color: #45515d; /* Storm Slate */
    color: #fff;
    border-bottom: none;
    border-top-left-radius: 1.2rem; /* Slightly smaller than content */
    border-top-right-radius: 1.2rem; /* Slightly smaller than content */
    padding-top: 0.7rem; /* Add extra padding to extend color */
    padding-bottom: 0.7rem;
    margin-top: -1px; /* Pull up slightly to remove gap */
    box-shadow: 0 0 0 1px #45515d; /* Add thin shadow matching header color */
}

.ss-modal .modal-body {
    color: #45515d;
    font-size: 1rem;
    padding: 1.25rem;
    margin-top: -1px; /* To ensure no gap between header and body */
}

/* Rest of styles remain the same */
.ss-modal .modal-title {
    font-weight: 600;
    font-size: 1.4rem;
    color: #fff;
}

.ss-modal .modal-footer {
    border-top: none;
    padding: 1rem;
    justify-content: flex-end;
}

/* OK Button */
.ss-modal .ss-btn-ok {
    padding: 0.5rem 1rem;
    font-size: 16px;
    background: linear-gradient(180deg, #6699ac 0%, #558aa0 100%);
    border: none;
    color: white !important;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.05s ease-in-out;
}
.ss-modal .ss-btn-ok:hover,
.ss-modal .ss-btn-ok:active,
.ss-modal .ss-btn-ok:focus,
.ss-modal .ss-btn-ok:visited {
    background: linear-gradient(180deg, #5e90a5 0%, #4d7d94 100%);
    color: white !important;
}

/* Cancel Button - Rosy Coral (for confirm/prompt) */
.ss-modal .ss-btn-cancel {
    padding: 0.5rem 1rem;
    font-size: 16px;
    background: linear-gradient(180deg, #e97b7c 0%, #d96c6d 100%);
    border: none;
    color: white !important;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.05s ease-in-out;
}
.ss-modal .ss-btn-cancel:hover,
.ss-modal .ss-btn-cancel:active,
.ss-modal .ss-btn-cancel:focus,
.ss-modal .ss-btn-cancel:visited {
    background: linear-gradient(180deg, #de7172 0%, #c86162 100%);
    color: white !important;
}


.ss-modal .ss-btn-ok:active,
.ss-modal .ss-btn-cancel:active {
    transform: scale(0.99) !important;
}

/* Input field for prompt */
.ss-modal input.form-control {
    border-radius: 0.5rem;
    font-family: 'Quicksand', sans-serif;
    border: 1px solid #ccc;
}

/* Add hover/focus if needed */
.ss-modal .ss-btn-ok:hover,
.ss-modal .ss-btn-cancel:hover {
    opacity: 0.9;
}

.ss-modal .btn-close {
    filter: invert(1); /* for white 'X' */
    opacity: 0.9;
}
