#tc-pro-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
}

#tc-pro-banner .tc-container {
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px 12px 0 0;
}

@media (max-width: 768px) {
    #tc-pro-banner .tc-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

.tc-content {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.tc-content h3 { margin: 0 0 10px 0; font-size: 20px; }
.tc-content p { margin: 0; font-size: 14px; color: #666; }

.tc-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.tc-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.tc-btn:hover { opacity: 0.9; }
.tc-btn-primary { background: #28a745; color: #fff; }
.tc-btn-secondary { background: #f0f0f1; color: #3c434a; }

/* Modal Styles */
#tc-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.tc-modal {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
}

.tc-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.tc-modal-close { cursor: pointer; font-size: 24px; }

.tc-category-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Toggle Switch */
.tc-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.tc-switch input { opacity: 0; width: 0; height: 0; }
.tc-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.tc-slider:before {
    position: absolute;
    content: "";
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .tc-slider { background-color: #28a745; }
input:checked + .tc-slider:before { transform: translateX(26px); }

/* Revocation Widget */
#tc-revocation-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    color: white;
}
