﻿
/* GIS Terminal Section */

.gis-section {
    background: #f9fafb;
}

.gis-map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .gis-map-container img {
        width: 100%;
        height: auto;
        display: block;
    }

.network-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 0.85rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.network-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.network-name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.9rem;
}

.network-status {
    font-family: var(--font-family);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 1rem;
}

    .network-status.active {
        background: #d1fae5;
        color: var(--primary-teal);
    }

    .network-status.warning {
        background: #ffedd5;
        color: #f97316;
    }

.network-desc {
    font-family: var(--font-family);
    font-size: 0.825rem;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.progress {
    height: 5px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-teal {
    background: var(--primary-teal);
}

.progress-bar-orange {
    background: #f97316;
}

.progress-bar-dark {
    background: var(--dark-green);
}



@media (max-width: 991px) {
    .gis-section {
        margin: 0px 60px;
    }
}


/* Tablet Portrait (576px - 767px) */

@media (max-width: 767px) {
    .gis-section {
        margin: 0px 30px;
        padding: 2rem 0;
    }

    .gis-map-container {
        margin-bottom: 2rem;
    }
}


/* Mobile (320px - 575px) */

@media (max-width: 575px) {
    .gis-section {
        margin: 0px 15px;
        padding: 1.5rem 0;
    }
}

