.common-modal {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: 100%;
    background-color: white;
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    border-radius: 10px 10px 0 0;
}

.modal-content h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.button-group button {
    background-color: #f5f5f5;
    border: none;
    border-radius: 5px;
    padding: 5px 9px;
    margin: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #5f5f5f
}

.button-group button:hover {
    background-color: #e0e0e0;
}

.search-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.search-button:hover {
    background-color: #45a049;
}

#custom-date-range input[type="date"] {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    font-size: 14px;
    width: 40%;
} 
#date-range {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    display: flex
;
    align-items: center;
    gap: 5px;
}

