.netmap-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.netmap-search {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.netmap-search:focus {
    border-color: #2271b1;
    outline: none;
}

.netmap-search:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:hover {
    background: #f0f0f0;
}

.suggestion-item.loading,
.suggestion-item.no-results,
.suggestion-item.error {
    cursor: default;
    text-align: center;
    color: #666;
}

.suggestion-item.error {
    color: #dc3545;
}

.netmap-button {
    background: #2271b1;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.netmap-button:hover:not(:disabled) {
    background: #135e96;
}

.netmap-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.netmap-loading {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #2271b1;
}

.operator-section {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    overflow: hidden;
}

.operator-title {
    background: #f0f0f0;
    padding: 12px 15px;
    margin: 0;
    font-size: 16px;
}

.tech-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tech-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-item:last-child {
    border-bottom: none;
}

.tech-name {
    font-weight: 600;
}

.tech-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-covered {
    background: #d4edda;
    color: #155724;
}

.status-not-covered {
    background: #f8d7da;
    color: #721c24;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    background: white;
    border-radius: 6px;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
}