.ze-net-status-container {
    max-width: 1000px;
    margin: 20px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ze-search-header {
    color: #E65100;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ze-search-box {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.ze-search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    outline: none;
}

.ze-search-box button {
    background-color: #F06529;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ze-search-box button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

#ze-map {
    width: 100%;
    height: 450px;
    background-color: #e5e3df;
    border-radius: 4px;
    overflow: hidden;
}

.ze-status-result {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ze-status-result.outage {
    background-color: #FFEBEE;
    color: #D32F2F;
    border: 1px solid #FFCDD2;
    display: block;
}

.ze-status-result.clear {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
    display: block;
}

.ze-status-result h3 {
    margin: 0 0 5px 0;
}

.ze-status-result p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.ze-status-result.monitoring {
    background-color: #FFF9C4;
    color: #F57F17;
    border: 1px solid #FFF59D;
    display: block;
}
