/* Smart Disable Click Styles */
body {
    user-select: none;
}

.wrap h1 {
    color: #0077B5;
}

/* Toggle Switch Style */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #007cba;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.description {
    font-size: 13px;
    color: #646970;
    margin-top: 5px;
}


.swdc-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(4px); /* subtle blur effect for professional look */
}

.swdc-popup-content {
    background: #ffffff;
    padding: 40px 45px;
    border-radius: 16px;
    text-align: center;
    width: 90%;
    max-width: 484px; /* 🔥 increased width for larger modal */
    min-height: 138px; /* gives balanced height */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.35s ease;
    border: 1px solid #e6e6e6;
    position: relative;
}

.swdc-popup-content h2 {
    color: #0a3d62;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.swdc-popup-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 15px;
}

#swdc-close-btn {
    background: #3B9797;
    color: #fff;
    border: none;
    padding: 10px 35px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    border:1.5px solid #3B9797;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


#wpd-close-btn:hover {
    background: #fff;
    border-color: #3B9797;
    color: #3B9797;
}

@keyframes fadeIn {
    from { opacity: 0; } 
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; } 
    to { transform: translateY(0); opacity: 1; }
}
