.subwindow-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem 0.5rem;
    width: 100%;
    min-height: 100%;
}

.navbar-wrapper {
    padding: 1rem;
    top: 0;
    left: 0;
    position: sticky;
    width: 100%;
    background: white;
    border-bottom: 1px solid #DDD;
    z-index: 10;
}

/* Loader Styles */
.loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

.est-divider {
    width: 100%;
    height: 1px;
    background-color: #DDD;
    margin: 0px;
}

.est-divider-vertical {
    height: auto; 
    background-color: #DDD; 
    width: 1px;
    margin-top: -1rem;
    margin-bottom: -1rem;
}


.section-full {
    height: 508px;
}

.section-full-h {
    min-height: 530px;
}

.list-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}