#mcc-banner {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 500px; background: #fff; padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2); border-radius: 12px;
    display: none; z-index: 999999; font-family: sans-serif;
}

/* Mobilanpassning */
@media (max-width: 600px) {
    #mcc-banner {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 15px 15px 0 0;
        padding: 20px;
        max-height: 85vh; 
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mcc-buttons {
        flex-direction: column;
    }

    .mcc-button {
        width: 100%;
    }
}

.mcc-options {
    display: flex; justify-content: space-between; margin: 20px 0;
    font-size: 14px; background: #f4f4f4; padding: 10px; border-radius: 6px;
}
.mcc-buttons { display: flex; gap: 10px; }
.mcc-btn {
    flex: 1; padding: 12px; border: none; border-radius: 6px;
    cursor: pointer; font-weight: bold; transition: 0.3s;
}
.mcc-btn-accept { background: var(--mcc-primary); color: #fff; }
.mcc-btn-secondary { background: #e0e0e0; color: #444; }
.mcc-btn:hover { opacity: 0.9; }

/* Floating Toggle Button */
#mcc-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: var(--mcc-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999998;
    transition: transform 0.3s ease;
}

#mcc-toggle:hover {
    transform: scale(1.1);
}

#mcc-toggle svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.mcc-accordion {
    margin: 15px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.mcc-acc-item {
    border-bottom: 1px solid #eee;
}

.mcc-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #fdfdfd;
}

.mcc-acc-header label {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mcc-acc-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 10px;
    transition: transform 0.2s;
    color: #999;
}

.mcc-acc-content {
    display: none; /* Hidden by default */
    padding: 10px 15px;
    background: #fff;
    font-size: 12px;
}

.mcc-acc-item.active .mcc-acc-content {
    display: block;
}

.mcc-acc-item.active .mcc-acc-trigger {
    transform: rotate(180deg);
}

.mcc-cookie-table {
    width: 100%;
    border-collapse: collapse;
}

.mcc-cookie-table td {
    padding: 5px 0;
    vertical-align: top;
    border-bottom: 1px dotted #eee;
}

.mcc-empty { color: #aaa; font-style: italic; }