/* Felix Evangelium Cookie Policy Styles */
.fehc-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid #FF6B35; /* Orange */
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 999999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.fehc-cookie-banner.show {
    transform: translateY(0);
}

.fehc-cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.fehc-cookie-text {
    flex: 1;
    min-width: 300px;
}

.fehc-cookie-text p {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.fehc-cookie-links {
    font-size: 13px;
    margin: 10px 0 0 0;
}

.fehc-cookie-links a {
    color: #1E3A8A; /* Blue */
    text-decoration: none;
    transition: color 0.3s;
}

.fehc-cookie-links a:hover {
    color: #FF6B35; /* Orange */
    text-decoration: underline;
}

.fehc-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.fehc-cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 120px;
}

.fehc-reject-btn {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}

.fehc-reject-btn:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.fehc-accept-btn {
    background: #1E3A8A; /* Blue */
    color: white;
    border: 2px solid #1E3A8A;
}

.fehc-accept-btn:hover {
    background: #FF6B35; /* Orange */
    border-color: #FF6B35;
    transform: translateY(-2px);
}

.fehc-cookie-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.3s;
    flex-shrink: 0;
    line-height: 1;
}

.fehc-cookie-close:hover {
    color: #FF6B35; /* Orange */
    transform: scale(1.1);
}

.fehc-cookie-policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.fehc-cookie-policy-content h2 {
    color: #1E3A8A; /* Blue */
    border-bottom: 2px solid #FF6B35; /* Orange */
    padding-bottom: 10px;
}

.fehc-cookie-policy-content h3 {
    color: #1E3A8A; /* Blue */
    margin-top: 25px;
}

.fehc-cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.fehc-cookies-table th {
    background: #1E3A8A; /* Blue */
    color: white;
    padding: 12px;
    text-align: left;
}

.fehc-cookies-table td {
    padding: 12px;
    border: 1px solid #e9ecef;
}

.fehc-cookies-table tr:nth-child(even) {
    background: #f8f9fa;
}

.fehc-admin-info {
    background: #f8f9fa;
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid #FF6B35; /* Orange */
}

.fehc-admin-info h3 {
    color: #1E3A8A; /* Blue */
}

.fehc-toast {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    background: #1E3A8A !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    z-index: 1000000 !important;
    animation: fehcSlideIn 0.3s ease !important;
}

@keyframes fehcSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .fehc-cookie-banner {
        padding: 15px;
    }
    
    .fehc-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .fehc-cookie-text {
        min-width: auto;
    }
    
    .fehc-cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .fehc-cookie-btn {
        width: 100%;
    }
    
    .fehc-cookie-close {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 5px;
    }
}