.map_container {
    height: 500px;
}


/* STATUS VIEW */

        .status-box {
            display: inline-block;
            padding: 5px 10px;
            font-size: 14px;
            font-weight: bold;
            color: white;
            background-color: red;
            border-radius: 5px;
        }
        .info-card {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 12px;
            display: flex;
          
            align-items: center;
            gap: 10px;
        }
        .icon-box {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: white;
            font-size: 24px;
        }
        .yellow-box {
            background-color: #FFC107;
        }
        .blue-box {
            background-color: #17A2B8;
        }
        .status-options {
            list-style: none;
            padding: 0;
        }
        .status-options li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 5px;
        }