﻿@charset "UTF-8";
/* Custom CSS for CookiesPopup styling */
/* Popup styling */
.custom-popup {
    background-color: #ffffff !important;
    border-radius: 10px !important;
    padding: 20px !important;
    /*border: 2px solid #33c0ac !important;*/
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Title styling */
.custom-title {
    font-family: 'Arial', sans-serif !important;
    color: #33c0ac !important;
    font-size: 24px !important;
    text-align: center !important;
}

/* Text styling */
.custom-title {
    font-family: 'Arial', sans-serif !important;
    color: #33c0ac !important;
    font-size: 24px !important;
    text-align: left !important;
    padding: 0px;
}
/* Text styling */
.swal2-html-container {
    text-align: left !important;
    padding: 0.5rem 0rem !important;
}

.swal2-actions {
    flex-direction: row-reverse !important;
    margin: 0px;
  
    /*margin-top: 2px;*/
}
/* Confirm button styling */
.custom-confirm-btn {
    background-color: #33c0ac !important;
    color: white !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    /*padding: 10px 50px !important;*/
    border: none !important;
    transition: background-color 0.3s ease !important;
    width: 48% !important;
}

    .custom-confirm-btn:hover {
        background-color: #28a995 !important;
    }

    .custom-confirm-btn:focus {
        box-shadow: none !important;
    }

/* Cancel button styling */
.custom-cancel-btn {
    background-color: #d33 !important;
    color: white !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    /*padding: 10px 50px !important;*/
    border: none !important;
    transition: background-color 0.3s ease !important;
    width: 48% !important;
    margin-left: -5px;
}

    .custom-cancel-btn:hover {
        background-color: #c12a2a !important;
    }

    .custom-cancel-btn:focus {
        box-shadow: none !important;
    }
/* Mobile responsiveness */
@media (max-width: 600px) {
    .custom-popup {
        padding: 15px !important;
        width: 90% !important;
    }

    .custom-title {
        font-size: 20px !important;
    }

    .custom-text {
        font-size: 14px !important;
    }

    .custom-confirm-btn, .custom-cancel-btn {
        padding: 8px 16px !important;
        font-size: 14px !important;
    }
}
button.swal2-close {
    position: absolute;
    right: 8px;
    COLOR: #726e6e;
}
    button.swal2-close:hover,
    button.swal2-close:focus {
        position: absolute;
        right: 8px;
        color: #726e6e; /* Fix the color property */
        cursor: pointer; /* Add pointer cursor on hover */
    }