/* Silktide Cookie Consent Manager Styles */
.silktide-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
}

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

.silktide-consent-text {
    flex: 1;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.silktide-consent-text a {
    color: #dc2626;
    text-decoration: underline;
}

.silktide-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.silktide-consent-button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Open Sans', sans-serif;
}

.silktide-consent-accept {
    background: #dc2626;
    color: white;
}

.silktide-consent-accept:hover {
    background: #b91c1c;
}

.silktide-consent-reject {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.silktide-consent-reject:hover {
    background: #e5e7eb;
}

.silktide-consent-preferences {
    background: transparent;
    color: #dc2626;
    border: 1px solid #dc2626;
}

.silktide-consent-preferences:hover {
    background: #dc2626;
    color: white;
}

.silktide-consent-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s ease;
}

.silktide-consent-icon:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

.silktide-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.silktide-preferences-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    font-family: 'Open Sans', sans-serif;
}

.silktide-preferences-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.silktide-preferences-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.silktide-cookie-type {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.silktide-cookie-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.silktide-cookie-name {
    font-weight: 600;
    color: #111827;
    font-size: 16px;
}

.silktide-cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.silktide-cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

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

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

input:checked + .silktide-toggle-slider {
    background-color: #dc2626;
}

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

.silktide-cookie-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.silktide-preferences-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .silktide-consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .silktide-consent-buttons {
        justify-content: center;
    }
    
    .silktide-consent-button {
        flex: 1;
        min-width: 120px;
    }
}