

.filter-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* --- প্রতিটি ধাপের স্টাইল --- */
.filter-step {
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.filter-step.active {
    background-color: #e0f7fa;
    border-color: #4dd0e1;
    box-shadow: 0 2px 8px rgba(77, 208, 225, 0.3);
}

.filter-step.completed {
    background-color: #e8e8e8;
}

/* --- হেডার এবং লেবেল --- */
.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

.step-label {
    font-size: 18px;
    font-weight: 600;
    color: #9e9e9e; /* নিষ্ক্রিয় ধাপের রঙ */
}

.filter-step.active .step-label,
.filter-step.completed .step-label {
    color: #00796b; /* সক্রিয় বা সম্পন্ন ধাপের রঙ */
}

/* --- সম্পন্ন ধাপের ভ্যালু এবং আইকন --- */
.completed-value {
    font-weight: 600;
    color: #000;
    margin-left: auto;
    margin-right: 10px;
}

.action-icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-left: 10px;
    vertical-align: middle;
}

/* --- ইনপুট ফিল্ড এবং বাটন --- */
.step-content {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-select {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300796b%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 14px;
}

.submit-button {
    padding: 12px 25px;
    border: none;
    background-color: #009688;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #00796b;
}

/* --- এরর মেসেজ --- */
.error {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 8px;
    padding-left: 5px;
    height: 1em; /* জায়গা ধরে রাখার জন্য */
}


/* --- রেসপন্সিভ ডিজাইন (মোবাইল ডিভাইসের জন্য) --- */
@media (max-width: 480px) {
    body {
        padding: 10px; /* মোবাইলে প্যাডিং কমানো হলো */
    }

    .filter-container {
        padding: 15px;
    }

    .step-label {
        font-size: 16px;
    }

    .step-content {
        flex-direction: column; /* ইনপুট এবং বাটন নিচে নিচে আসবে */
        align-items: stretch;
    }

    .filter-select, .submit-button {
        width: 100%;
    }
}