/* _content/ZoneManagement.AppUI/Pages/Request/UspsAddressCheck.razor.rz.scp.css */
/* Main container: Ensures equal space for left & right sections */
.main-container[b-gnxtqmamgw] {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left: Address form */
.address-form[b-gnxtqmamgw] {
    flex: 1;
    min-width: 48%;
}

/* Right: Response container */
.response-container[b-gnxtqmamgw] {
    flex: 1;
    min-width: 48%;
}

/* Form box */
.form-box[b-gnxtqmamgw] {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styled input fields */
.styled-input[b-gnxtqmamgw] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

    /* Focus effect on input */
    .styled-input:focus[b-gnxtqmamgw] {
        border-color: #007bff;
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    }

/* ✅ Ensure text wraps inside the box */
.response-box[b-gnxtqmamgw],
.error-box[b-gnxtqmamgw],
.success-box[b-gnxtqmamgw] {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-wrap: break-word; /* ✅ Ensures words break and wrap */
    word-wrap: break-word; /* ✅ Alternative for better browser support */
    white-space: normal; /* ✅ Allows text to wrap instead of staying in one line */
}

/* Success box (Green Background) */
.success-box[b-gnxtqmamgw] {
    background-color: #e9f7ef;
    border-left: 4px solid #28a745;
}

/* Error box with Red Background */
.error-box[b-gnxtqmamgw] {
    background-color: #fff3f3;
    border-left: 4px solid red;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
}

/* Bottom section */
.bottom-section[b-gnxtqmamgw] {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Additional details styling */
.additional-details[b-gnxtqmamgw] {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-wrap: break-word; /* ✅ Ensures words break and wrap */
    word-wrap: break-word; /* ✅ Alternative for better browser support */
    white-space: normal; /* ✅ Allows text to wrap */
}
.address-indent[b-gnxtqmamgw] {
    padding-left: 4rem; /* Or try margin-left */
    line-height: .6;
}
/* _content/ZoneManagement.AppUI/Shared/MainLayout.razor.rz.scp.css */
.page[b-80sn4718h3] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-80sn4718h3] {
    flex: 1;
}

.sidebar[b-80sn4718h3] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.top-row[b-80sn4718h3] {
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid #d6d5d5;
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
    z-index: 999;

}
    .top-row[b-80sn4718h3]  a, .top-row .btn-link[b-80sn4718h3] {
        white-space: nowrap;
    }

    .top-row a:first-child[b-80sn4718h3] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

.center-title[b-80sn4718h3] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-80sn4718h3] {
        display: none;
    }

    .top-row.auth[b-80sn4718h3] {
        justify-content: space-between;
    }

    .top-row a[b-80sn4718h3], .top-row .btn-link[b-80sn4718h3] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-80sn4718h3] {
        flex-direction: row;
    }

    .sidebar[b-80sn4718h3] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-80sn4718h3] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-80sn4718h3], article[b-80sn4718h3] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
/* _content/ZoneManagement.AppUI/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-b04wgqdrbd] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-b04wgqdrbd] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-b04wgqdrbd] {
    font-size: 1.1rem;
}

.oi[b-b04wgqdrbd] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-b04wgqdrbd] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-b04wgqdrbd] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-b04wgqdrbd] {
        padding-bottom: 1rem;
    }

    .nav-item[b-b04wgqdrbd]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-b04wgqdrbd]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-b04wgqdrbd]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-b04wgqdrbd] {
        display: none;
    }

    .collapse[b-b04wgqdrbd] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
