.fade-in {
    animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.slide-up {
    animation: slideUp 1s ease-in-out;
}
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #1f2937;
    color: #d1d5db;
    margin: auto;
    padding: 20px;
    border: 1px solid #4b5563;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}
.close {
    color: #9ca3af;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #f3f4f6;
    text-decoration: none;
    cursor: pointer;
}
.collapse-card {
    cursor: pointer;
    user-select: none;
    transition: transform 0.3s ease;
}
.collapse-card:hover {
    transform: scale(1.05);
}
.collapse-content {
    display: none;
    overflow: hidden;
}
.collapse-card.active .collapse-content {
    display: block;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1000;
    display: none;
}
.cookie-banner button {
    background-color: #EF4444;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 12px;
}
.cookie-banner button:hover {
    background-color: #cc0000;
}
.cookie-info-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #EF4444;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 12px;
    display: none;
}
.cookie-info-button:hover {
    background-color: #cc0000;
}
.highlight {
    border: 2px solid #EF4444;
    animation: highlight 1s ease-in-out infinite alternate;
}
@keyframes highlight {
    from {
        background-color: rgba(239, 68, 68, 0.1);
    }
    to {
        background-color: rgba(239, 68, 68, 0.3);
    }
}
