.scb-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: #333;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px solid #eee;
}

.scb-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.scb-content p {
    margin: 0;
    flex: 1;
    font-size: 15px;
}

.scb-buttons {
    display: flex;
    gap: 10px;
}

.scb-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s;
}

.scb-button:hover {
    background-color: #45a049;
    transform: translateY(-1px);
}

.scb-settings-btn {
    background-color: transparent;
    border: 1px solid #ccc;
    color: #555;
}

.scb-settings-btn:hover {
    background-color: #f5f5f5;
    border-color: #bbb;
    transform: translateY(-1px);
}

/* Modal Styling */
.scb-modal {
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scb-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.scb-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scb-modal-header h2 {
    margin: 0;
    font-size: 18px;
}

.scb-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.scb-close:hover,
.scb-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.scb-modal-body {
    padding: 20px;
}

.scb-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

.scb-label {
    margin-left: 15px;
    font-weight: 500;
    font-size: 16px;
}

.scb-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Toggle Switch */
.scb-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.scb-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.scb-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.scb-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .scb-slider {
    background-color: #4CAF50;
}

input:focus + .scb-slider {
    box-shadow: 0 0 1px #4CAF50;
}

input:checked + .scb-slider:before {
    transform: translateX(26px);
}

input:disabled + .scb-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .scb-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .scb-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}
