.tcc-widget {
    width: 100%;
}

.tcc-consent-container {
    padding: 30px;
    background: #f7f7f7;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tcc-consent-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.tcc-accept-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tcc-accept-btn:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,115,170,0.3);
}

.tcc-accept-btn:focus {
    outline: 2px solid #005a87;
    outline-offset: 2px;
}

.tcc-accept-btn:active {
    transform: translateY(0);
}

.tcc-form-container {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tcc-revoke-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.tcc-revoke-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.tcc-revoke-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .tcc-consent-container {
        padding: 20px;
    }

    .tcc-accept-btn {
        width: 100%;
        padding: 14px;
    }

    .tcc-consent-text {
        font-size: 14px;
    }
}

.elementor-widget-tally_cookie_consent .elementor-widget-container {
    width: 100%;
}

.rtl .tcc-consent-container {
    text-align: right;
}

.rtl .tcc-revoke-container {
    right: auto;
    left: 20px;
}