.ccr-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 15px 20px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.ccr-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.ccr-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.ccr-text a {
    color: #4caf50;
    text-decoration: underline;
}

.ccr-text a:hover {
    color: #45a049;
}

.ccr-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.ccr-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.ccr-btn-accept {
    background-color: #4caf50;
    color: white;
}

.ccr-btn-accept:hover {
    background-color: #45a049;
}

.ccr-btn-decline {
    background-color: #f44336;
    color: white;
}

.ccr-btn-decline:hover {
    background-color: #da190b;
}

@media (max-width: 768px) {
    .ccr-container {
        flex-direction: column;
        text-align: center;
    }
    .ccr-buttons {
        width: 100%;
        justify-content: center;
    }
    .ccr-btn {
        flex: 1;
        max-width: 150px;
    }
}