﻿body {
}

.close-button {
  background: none;
  border: none;
}

.tile {
    -webkit-box-shadow: 0px 0px 1px 1px #CBCBCB;
    box-shadow: 0px 0px 1px 1px #CBCBCB;
    background: #fff;
    border-radius: 7px;
    padding: 20px;
}

.hospital-details .close-ui {
    float: right;
}

.hospital-details {
    background: #F7FAFC;
}

.hospital-details {
}

.hospital-details .container {
  padding: 15px 0;
}
.input-group .btn-primary,
.input-group .btn-secondary {
  height: 100%;
  min-width: 100px;
}

.hospital-details .container {
     padding:15px 0; 
}

.hospital-details .addr {
    color: #6A7A90;
}
.card-active {
    background: #F3F8FE;
    border-color: #197FE6;
}

.hospital-pic {
    height: 100%;
    max-height:142px;
    object-fit: cover;
}

.custom-hospital-marker {
    cursor: pointer;
    position: relative;
}

.marker-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.marker-layout {
    width: 200px;
    height: 50px;
    background: #fff;
    border:1px inset #0d6efd;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position:relative;
    z-index:9999;
    top:40px;
    color:#333;
}

.marker-icon {
    background: #0d6efd;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.marker-container {
    padding:10px;
    text-align:center;
}

.marker-container p {
    margin:auto;
}

    .marker-icon i {
        transform: rotate(45deg);
        font-size: 20px;
    }

    .marker-icon span {
        transform: rotate(45deg);
        /* font-size: 20px; */
        font-weight: 600;
    }

    .marker-label {
        background: white;
        color: #dc3545;
        font-weight: bold;
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 10px;
        border: 2px solid #dc3545;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .custom-hospital-marker:hover .marker-icon {
        transform: rotate(-45deg) scale(1.2);
        background: #0d6efd;
    }
    /* Status-based marker colors */
    .custom-hospital-marker.status-available .marker-icon {
        background: #198754;
    }

    .custom-hospital-marker.status-busy .marker-icon {
        background: #ffc107;
    }

    .custom-hospital-marker.status-unavailable .marker-icon {
        background: #6c757d;
    }