/* Основной контейнер */
.ccp-popup {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
}

.ccp-popup.ccp-visible {
    display: block;
}

.ccp-popup-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto 10px auto;
    padding: 10px 48px 10px 12px;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
    border-radius: 4px;
    box-sizing: border-box;
}

.ccp-message {
    margin-bottom: 12px;
}

.ccp-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ccp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-weight: 600;
}

.ccp-close {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    left: auto !important;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

@media (max-width: 767px) {
    .ccp-popup-inner {
        max-width: 100%;
        margin: 0 8px 6px 8px;
        padding: 10px 40px 10px 10px;
    }
}


