.cs-loader{position:relative;top: 300px;left:0;height:100%;width:100%;z-index:5001;-ms-user-select:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}
.cs-loader-inner{transform:translateY(-50%);top:50%;position:absolute;width:100%;color:#FFF;padding:0;text-align:center}
.cs-loader-inner label{font-size:32px;opacity:0;display:inline-block;cursor:inherit}
    @keyframes loadingDots {
            1%{opacity:0;transform:translateX(-100px)}
            33%{opacity:1;transform:translateX(0px)}
            66%{opacity:1;transform:translateX(0px)}
            100%{opacity:0;transform:translateX(100px)}
    }
    @-webkit-keyframes loadingDots {
            1%{opacity:0;-webkit-transform:translateX(-100px)}
            33%{opacity:1;-webkit-transform:translateX(0px)}
            66%{opacity:1;-webkit-transform:translateX(0px)}
            100%{opacity:0;-webkit-transform:translateX(100px)}
    }
.cs-loader-inner label:nth-child(6){-webkit-animation:loadingDots 3s infinite ease-in-out;animation:loadingDots 3s infinite ease-in-out;color:#FC880F;font-weight: 300 !important;}
.cs-loader-inner label:nth-child(5){-webkit-animation:loadingDots 3s 100ms infinite ease-in-out;animation:loadingDots 3s 100ms infinite ease-in-out;color:#FC880F;font-weight: 300 !important;}
.cs-loader-inner label:nth-child(4){-webkit-animation:loadingDots 3s 200ms infinite ease-in-out;animation:loadingDots 3s 200ms infinite ease-in-out;color:#FC880F;font-weight: 300 !important;}
.cs-loader-inner label:nth-child(3){-webkit-animation:loadingDots 3s 300ms infinite ease-in-out;animation:loadingDots 3s 300ms infinite ease-in-out;color:#FC880F;font-weight: 300 !important;}
.cs-loader-inner label:nth-child(2){-webkit-animation:loadingDots 3s 400ms infinite ease-in-out;animation:loadingDots 3s 400ms infinite ease-in-out;color:#FC880F;font-weight: 300 !important;}
.cs-loader-inner label:nth-child(1){-webkit-animation:loadingDots 3s 500ms infinite ease-in-out;animation:loadingDots 3s 500ms infinite ease-in-out;color:#FC880F;font-weight: 300 !important;}
.bg-image {
    width: 100%;
    overflow: hidden !important;
    flex-shrink: 0;
    aspect-ratio: 380/193;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 45.44%, #000 96.27%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%),
        url('../login/assets/sso_background.jpg') lightgray 50% / cover no-repeat;
}

.parent-wrapper {
    display: flex;
	height: 100%;
    flex-direction: column;
    padding: 10px;
    align-items: flex-end;
}

.items-list {
    width: 485px;
    height: 100%;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.80);
    margin-right: 60px;
    padding-left: 30px;


}

.sso-unify-logo {
    width: 230px;
        height: 94px;
        flex-shrink: 0;
        background: url(../login/assets/WelcomeUnifyPlus_FC-Rev.svg) no-repeat;
        /* margin-bottom: 0px; */
        margin-top: 20px;
        position: relative;
        left: 100px;
}

.sso-circana-logo {
  width: 202px;
    height: 56px;
    flex-shrink: 0;
    background: url(../login/assets/circana-logo.svg) no-repeat;
    position: fixed;
    top: 85%;
    margin-left: 120px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.app-container {
    min-height: 420px;
}
.user-selection-container {
    border-radius: 8px;
    padding: 0;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    /* Changed from hidden to visible to avoid clipping shadows */
    overflow: visible;
}

.header {
    padding: 10px 20px;
}

.title {
    color: var(--Pure-White, #FFF);
    font-family: "Roboto Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.44px;
    margin-left: -5px;
}

.user-list {
max-height: 250px;
    overflow-y: scroll;
    padding-right: 4px;
}

/* Optional: for better scrollbar visibility and aesthetics */
.user-list::-webkit-scrollbar {
  width: 6px;
}

.user-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.user-item {
       display: flex;
    align-items: center;
    padding: 7px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    margin-bottom: 3px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.80);
    min-height: 40px;
    line-height: 1;

}

.user-item:hover {
    /* background: #424268; */
}

.user-item.selected {
    border-radius: 4px;
    /* Use inset shadow to avoid cropping */
    box-shadow: inset 0 0 0 1px rgba(122, 76, 147, 0.70);
    background: rgba(0, 0, 0, 0.80);
}

.radio-input {
    display: none;
}

.radio-custom {
    width: 14px;
    height: 14px;
    border: 2px solid #7b2cbf;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
    line-height: 1;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #7b2cbf;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.user-item.selected .radio-custom {
    border-color: #7b2cbf;
}

.user-item.selected .radio-custom::after {
    opacity: 1;
}

.user-info {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    line-height: 1;
}

.username {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    width: 120px;
    flex-shrink: 0;
}

.user-details {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
}

.user-detail {
    font-size: 14px;
    color: #cdcdcd;
    font-weight: 400;
    text-align: left;
    flex: 1;
}

.footer {
    padding: 15px 20px;
    text-align: center;
}

.login-button {
    display: flex;
    width: 137px;
    height: 32px;
    padding: 13px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 40px;
    background: var(--Brand-Purple, #4E106F);
    color: white;
    border: none;
    margin-left: -5px;
}

.login-button:hover {
    background: #8a2be2;
}

.login-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.login-button:disabled:hover {
    background: #7b2cbf;
}