/* Контейнер баннера */
.ccd-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 18px 25px;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ccd-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    flex: 1;
}

/* Ссылка на политику */
.ccd-policy-link {
    color: #062C7D !important;
    text-decoration: underline;
    font-size: 14px !important; /* Фиксированный размер */
    font-weight: 400 !important;
    line-height: inherit !important;
}
.ccd-policy-link:hover {
    text-decoration: none;
}

/* Кнопки */
.ccd-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ccd-btn-accept {
    background-color: #3968CE !important;
    color: #FFFFFF !important;
    border: 1px solid #3968CE !important;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: none !important;
}
.ccd-btn-accept:hover {
    background-color: #2a4e9e !important;
    border-color: #2a4e9e !important;
    transform: translateY(-1px);
}

.ccd-btn-reject {
    background-color: #DBDBDB !important;
    color: #062C7D !important;
    border: 1px solid #DBDBDB !important;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: none !important;
}
.ccd-btn-reject:hover {
    background-color: #c9c9c9 !important;
    border-color: #c9c9c9 !important;
    transform: translateY(-1px);
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    .ccd-notification {
        flex-direction: column;
        text-align: left;
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    .ccd-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .ccd-btn-accept, .ccd-btn-reject {
        width: 100%;
        padding: 12px 0;
        text-align: center;
    }
}