﻿.form-container {
    border-radius: 15px;
    box-shadow: 0 0 20px rgb(0, 148, 255,0.1);
    padding: 10px;
    margin-bottom: 10px;
}
/* Add this to your CSS file
 */
.enabled-tab {
    background-color: rgb(0, 148, 255,0.1); /* Example background color */
    color: #155724; /* Example text color */
    border-color: #011722; /* Example border color */
}
.progress {
    height: 10px;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    border: none;
    color: #495057;
    font-weight: 600;
}

    .nav-tabs .nav-link.active {
        color: #011722;
        background-color: transparent;
        border-bottom: 3px solid rgb(0, 148, 255,0.1);
    }

.form-check-label {
    cursor: pointer;
}

.btn-next, .btn-prev {
    min-width: 100px;
}
.drag-drop-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .drag-drop-area:hover, .drag-drop-area.dragover {
        background-color: #335374;
    }

.file-input {
    display: none;
}

.image-preview {
    display: inline-block;
    margin: 10px;
    text-align: center;
    position: relative;
}

    .image-preview img {
        max-width: 150px;
        max-height: 150px;
        object-fit: cover;
        border-radius: 4px;
    }

.remove-image-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .remove-image-btn:hover {
        background-color: rgba(255, 0, 0, 0.9);
    }