.loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    /* Dark transparent layer */
    background: rgba(17, 24, 39, 0.25);

    /* Glass blur effect */
    /* backdrop-filter: blur(8px); */
    /* -webkit-backdrop-filter: blur(8px); */
}

.loader-container {
    position: relative;
    width: 80px;
    height: 80px;
    
}


.loader-logo {
    position: absolute;
    width: 35px; /* smaller logo */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner-ring {
    width: 90px;
    height: 90px;
    border: 4px solid #e5e5e5;
    border-top: 4px solid #22c55e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


.input-wrapper {
    position: relative;
}

.input-wrapper .form-input {
    padding-right: 50px; /* leave space for icon */
}

.edit-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.edit-icon:hover {
    color: #218838;
}