﻿.custom-modal {
    width: 100%;
    max-width: 520px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 0;
}

.custom-modal-header {
    padding: 20px 20px 10px;
    position: relative;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.progress-bar-wrapper {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-bar-inner {
    height: 100%;
    background-color: #8ed089;
    transition: width 0.3s ease;
}

.price-range {
    font-size: 14px;
    color: #777;
}

.btn-close-custom {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
    border: none;
    background: none;
    color: #888;
    cursor: pointer;
}

.custom-modal-body {
    padding: 20px;
}

.custom-modal-footer {
    padding: 15px 20px;
    text-align: right;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

    .custom-modal-footer .btn {
        margin-left: 10px;
    }
