/* .nav-active {
    background-color: #2952ff;
    border-radius: 30px;
    color: white;
} */

.scrollX {
    height: 600px;
    overflow-x: hidden;
    overflow-y: auto;
}

.bg-card {
    background: url(https://diandidaktika.sch.id/assets/images/il-header.jpg)
        no-repeat;
    background-size: cover;
    background-position: center;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.file-drop-area {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.file-drop-area.dragover {
    border-color: #007bff;
    background-color: #f0f8ff;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

/* .preview-box {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    background: #f9f9f9;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: fadeIn 0.4s ease;
} */



.preview-box {
    position: relative;
    width: 200px;
    height: 200x;
}

.preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.preview-box .remove-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    padding: 0;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    background-color: red;
    color: white;
    border: none;
    z-index: 10;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 16px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 
.input {
    padding: 15px 35px;
    font-size: 18px;
}

.btn-primary {
    padding: 15px 35px;
    font-size: 18px;
} */
