.card-place {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card-place:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 25px rgba(82, 133, 243, 0.6), 0 10px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.card-place:hover .fw-semibold,
.card-place:hover .status,
.card-place:hover .address {
    color: #fff;
}

.card-place:hover img {
    filter: brightness(1.05) contrast(1.1);
}

.card-place::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(circle, rgba(51, 116, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.card-place:hover::before {
    opacity: 1;
}

.overlay-gray {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 500;
    pointer-events: none;
    border-radius: 12px;
}

.marker-cluster-custom {
    background-color: #ff0055;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
    border: 2px solid white;
}

.dark-input {
    background-color: #2d2d2d !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
}

.dark-input::placeholder {
    color: #aaa;
}

.form-dark .form-label {
    color: #e0e0e0;
    font-weight: 500;
}

.form-dark .form-check-label {
    color: #ccc;
}

.form-dark .form-text {
    color: #888;
    font-size: 13px;
}

.form-dark input[type="checkbox"],
.form-dark input[type="radio"] {
    margin-right: 6px;
}

.bg-dark {
    background-color: black !important;
}

.modal-body::-webkit-scrollbar {
    display: none;
}

.modal-body {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.glow {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.glow:focus {
    border-color: #0ff;
    box-shadow: 0 0 8px #0ff, 0 0 20px #0ff;
    background-color: #1f1f1f;
    color: #fff;
    outline: none;
}

.glow::placeholder {
    color: #f4efef;
}

#map-container {
    position: relative;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
}

#card-list-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 360px;
    max-height: 90%;
    overflow-y: auto;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 12px;
    display: none;
}

#card-list-overlay .card {
    margin-bottom: 10px;
    background-color: #1d1d1d;
    border: none;
    color: white;
}