#type_of_outages_selector {
    margin-bottom: 0.5rem !important;
    font-size: 14px;
    font-family: Roboto, arial, sans-serif;
}

#type_of_outages_selector .ui-button {
    background: linear-gradient(90deg, #406EB6 0%, #222E6B 100%);
    border-color: #fff;
    color: white;
    padding: 16px;
    border-radius: 6px;
}

#type_of_outages_selector .ui-button:hover,
#type_of_outages_selector .ui-button:focus {
    background: linear-gradient(90deg, #FED000 0%, #F39900 48.96%, #E66A00 100%);
    border-color: #fff;
    color: white;
    padding: 16px;
    border-radius: 6px;
}

#type_of_outages_selector .ui-state-active {
    background: linear-gradient(90deg, #FED000 0%, #F39900 48.96%, #E66A00 100%);
    border-color: #fff;
    color: white;
    border-radius: 6px;
}

#pnl_power_outage_search {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
    max-width: 400px;
    flex: 0 0 50%;
}

#txtSearchOutage {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
    display: block;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#txtSearchOutage:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

#pnl_power_outage_search>div {
    margin-left: -1px;
    display: flex;
}

#btnSearchOutage,
#btnClearSearch {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    position: relative;
    z-index: 2;
    cursor: pointer;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    color: #007bff;
    border-color: #007bff;
}

#btnSearchOutage {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#btnSearchOutage:active,
#btnClearSearch:active,
#btnSearchOutage:hover,
#btnClearSearch:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

#btnSearchOutage:focus,
#btnClearSearch:focus {
    z-index: 3;
}

#div_outage_not_found {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}