#Date {
    width: 100%;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: left;
    border-radius: 4px;
    transition: background 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mt-5 {
    margin-top: 1.9rem !important;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
    margin-bottom: 15px;
}

.quick-toggle {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: left;
    border-radius: 4px;
    transition: background 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    box-sizing: border-box;
}

.quick-toggle:hover {
    background-color: #e9ecef;
}

.quick-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.quick-menu li {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}

.quick-menu li:hover {
    background-color: #f1f1f1;
}

.quick-menu a {
    text-decoration: none;
    color: #333;
    display: block;
    width: 100%;
}

.quick-menu a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-dropdown {
        margin-bottom: 10px;
    }

    .quick-toggle {
        font-size: 16px;
    }

    .quick-menu {
        max-height: 150px;
    }
}
