/* style.css */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}

.active-filter,
.active-view,
.active-page {
    background-color: #4a5568 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tag {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.tag:hover {
    transform: scale(1.05);
    color: #2c5282;
}

.card-container,
.list-item-container {
    transition: opacity 0.5s ease-in-out;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
