/* Gratis Sample Popup - стили */

#gspModal .modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: none;
}

#gspModal .modal-header {
    background: #ffffff;
    color: #fff;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
    padding: 20px 24px;
}

#gspModal .modal-title {
    font-weight: 500;
    font-size: 1.2rem;
    color: #2f4431
}

#gspModal .modal-body {
    padding: 0 24px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

#gspModal .modal-footer {
    border-top: 1px solid #eee;
    padding: 16px 24px;
    background: #f9f9f9;
    border-radius: 0 0 12px 12px;
    background: #ffffff;
    margin-top: 10px;
}

#gspModal .modal-footer .btn#gspAcceptBtn {
    width: 100%;
    border-radius: 50px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #c2a84d;
    background: #c2a84d;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border: 1px solid #c2a84d;
    transition: all 0.3s ease-in-out;
}

#gspModal .modal-footer .btn#gspAcceptBtn:hover {
    background: transparent;
    color: #c2a84d;
}


@media (max-width: 576px) {
    #gspModal .modal-footer {
        flex-direction: column;
    }

    #gspAcceptBtn {
        width: 100%;
        text-align: center;
    }
}

/* Тестовая кнопка */
#gspDeclineBtn {
    width: 100%;
    border-radius: 50px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #c2a84d; 
    background: #ffffff;
    color: #c2a84d !important;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

#gspDeclineBtn:hover {
    color: #ffffff !important;
    background: #c2a84d !important;
    text-decoration: none;
}

