@import url('https://fonts.googleapis.com/css2?family=Grey+Qo&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: "Poppins", sans-serif;
}

.scrollerHideClass::-webkit-scrollbar {
    display: none;
}


.detailCard{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}



#ZoneSelection::-webkit-scrollbar {
    display: none;
}
#UserForm::-webkit-scrollbar {
    display: none;
}
#table::-webkit-scrollbar {
    display: none;
}
#manage-scheduler-table::-webkit-scrollbar {
    display: none;
}

.ZoneSelectionCard{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.email-input-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #f46a2f; /* Match the border color of your form fields */
    border-radius: 4px; /* Match the border radius of your form fields */
    padding: 4px;
    background-color: #fff; /* Match the background color of your form fields */
    min-height: 40px;
}

.email-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px; /* Add gap between email tags */
}

.email-tag {
    display: flex;
    align-items: center;
    margin: 2px; /* Adjust margin to match spacing of other fields */
    padding: 4px 8px;
    background-color: #f9f9f9; /* Light background color for the tags */
    border: 1px solid #e2e8f0; /* Light border color for the tags */
    border-radius: 4px; /* Match the border radius of your form fields */
    font-size: 14px;
    color: #1a202c; /* Text color for the tags */
}

.email-tag .email-text {
    margin-right: 4px;
}

.email-tag .remove-btn {
    cursor: pointer;
    background: transparent;
    border: none;
    color: #1a202c;
    font-size: 12px;
}

.email-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 8px;
    background: transparent;
    color: #1a202c; /* Match the text color of other fields */
    font-size: 14px; /* Match the font size of other fields */
}

.email-input::placeholder {
    color: #9ca3af; /* Match the placeholder color of other fields */
}