/* Cookie Consent Styles */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 20px;
    display: none;
}

#cookie-consent.show {
    display: block;
}

.ic-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.ic-text {
    flex: 1;
    min-width: 250px;
}

.ic-text strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.ic-text div {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.ic-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ic-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.ic-btn:not(.ic-secondary) {
    background: #0052a3;
    color: #fff;
}

.ic-btn:not(.ic-secondary):hover {
    background: #003d7a;
}

.ic-btn.ic-secondary {
    background: #f0f0f0;
    color: #333;
}

.ic-btn.ic-secondary:hover {
    background: #e0e0e0;
}

.ic-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ic-modal[aria-hidden="false"] {
    display: flex;
}

.ic-card {
    background: #fff;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.ic-card-h {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ic-card-h strong {
    font-size: 18px;
    color: #333;
}

.ic-x {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ic-x:hover {
    color: #333;
}

.ic-card-b {
    padding: 20px;
}

.ic-card-b p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.ic-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.ic-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.ic-row span {
    color: #333;
}

.ic-actions-2 {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ic-link {
    color: #0052a3;
    text-decoration: none;
    font-size: 14px;
}

.ic-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ic-wrap {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ic-actions {
        width: 100%;
    }
    
    .ic-btn {
        flex: 1;
    }
}
