.drop-zone {
    border: 2px dashed #6c757d;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #6c757d;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.drop-zone.dragover {
    background-color: #f8f9fa;
    border-color: #0d6efd;
    color: #0d6efd;
}

.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.preview-item {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    cursor: grab;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.preview-item img,
.preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(220, 53, 69, 0.85);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
    cursor: pointer;
}
.cname{
    text-transform: uppercase;
}
.accordion-toggle {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 10px 16px;
    width: 100%;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.accordion-toggle:hover {
    background-color: #e2e6ea;
}

.accordion-content {
    border: 1px solid #dee2e6;
    border-top: none;
    padding: 12px 16px;
    border-radius: 0 0 4px 4px;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
