.line-rounded-icon.dropdown-arrow.profile-dropdown {
display: none;
}

.hidden {
display: none;
}

#password-requirements {
display: none;
}

#password-requirements ul {
padding: 0;
margin: 0;
}

#password-requirements li {
list-style: none;
position: relative;
padding-left: 1.5em;
margin-bottom: 0.5em;
}

#password-requirements li::before {
content: "•";
color: black;
position: absolute;
left: 0;
font-size: 1.2em;
}

#password-requirements li.valid::before {
content: "✓";
color: var(--Lime_Green);
}

#password-requirements li.valid {
color: var(--Lime_Green);
}

:root {
--Lime_Green: #8DC143;
--Lime_Green_Hover: #92d36f;
--Black: #181818;
--Black_Hover: #282828;
--Grey: #a9b0c0;
--Grey_Hover: #c0c6d2;
--White: #ffffff;
--White_Hover: #f5f5f5;
--Whitesmoke: var(--White_Hover);
}


#inline-message {
position: fixed;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 90vw;
height: 50px;
padding: 10px;
text-align: center;
line-height: 1.5;
z-index: 9999;
display: none;
border-radius: 4px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
font-size: 14px;
font-weight: 400;
}

#inline-message.success {
background-color: var(--system--green-400); /* Green for success */
color: white;
}

#inline-message.failure {
background-color: var(--system--300); /* Red for failure */
color: white;
}

#inline-message.warning {
background-color: var(--system--orange-400); /* Orange for warnings */
color: white;
}

#inline-message .close-btn {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
font-size: 16px;
font-weight: bold;
color: white;
cursor: pointer;
}

.info-icon.circled-i {
display: inline-block;
margin-left: 5px;
cursor: pointer;
font-size: 14px;
position: relative;
z-index: 2;
}

.tooltip {
visibility: hidden;
width: 250px;
background-color: #FFFFFF;
color: var(--Black);
font-size: 12px;
font-weight: 400;
line-height: 1.5;
text-align: left;
border-radius: 5px;
padding: 10px;
position: absolute;
z-index: 2; /* Ensures tooltip appears above everything */
top: 100%;
left: 0%;
/* margin-left: -150px; */
opacity: 0;
transition: opacity 0.3s;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
border: 1px solid #ddd; /* Optional: Add a solid border */
}

.info-icon:hover .tooltip {
visibility: visible;
opacity: 1;
}

/* Spinner Styles */
#page-loader .spinner {
border: 4px solid #f3f3f3; /* Light gray border */
border-top: 4px solid #3498db; /* Blue border for animation */
border-radius: 50%; /* Circular shape */
width: 40px; /* Size of the spinner */
height: 40px; /* Size of the spinner */
animation: spin 1s linear infinite; /* Spin animation */
}

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

/* Positioning the page-loader */
#page-loader {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1000;
}

/* Target the icon container */
.mirror-icon {
display: inline-block; /* Ensure the container wraps the icon */
cursor: pointer; /* Change cursor to pointer on hover */
transition: transform 0.3s ease; /* Smooth transition for the transform */
}

/* Target the SVG inside the container */
.mirror-icon svg {
transition: transform 0.3s ease; /* Smooth transition for the transform */
}

/* Hover effect to grow the icon */
.mirror-icon:hover svg {
transform: scale(1.2); /* Grow the icon by 20% */
}