.login-form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #232222;
    width: 410px;
    padding: 30px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    z-index: 100001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;

}

.login-form-container.show {
    opacity: 1;
    visibility: visible;
}

.login-form-container .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
    z-index: 100002;
}

.login-form-container .close-btn:hover {
    color: #ff0000;
}

.login-form-container .text {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.login-form-container form {
    margin-top: -10px;
}

.login-form-container form #login-form,
.login-form-container form #signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  
}

.login-form-container form input {
    height: 45px;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #2c2c2c;
    color: #fff;
    text-transform: none;
}

.login-form-container form input::placeholder {
    color: #aaa;
}

.login-form-container form input:focus {
    border-color: #3498db;
    outline: none;
}

.login-form-container .btn {
    margin-top: 20px;
    height: 45px;
    width: 100%;
    position: relative;
    overflow: hidden;
   
}

.login-form-container .btn button {
    height: 100%;
    width: 100%;
    background-color: #ff0000;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.login-form-container .btn button {
    background-color: #ff0000;
    color: white;
}
.login-form-container .btn button:hover {
    background-color: #000000;
    color: rgb(255, 0, 0);
}



.login-form-container .btn.google-btn {
    margin-top: 10px;
    background-color: #db4437;
}

.login-form-container .btn.google-btn:hover {
    margin-top: 10px;
    background-color: #000000;
    color: red;
}


.login-form-container .signup-link {
    text-align: center;
    margin-top: 15px;
   
}

.login-form-container .signup-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.login-form-container .signup-link a:hover {
    text-decoration: underline;
}

/* uzer css */
.user-profile-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative; /* Needed for absolute positioning of dropdown */
    margin-left: 30px;
  }
  
  .user-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .user-profile-name {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  .dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position below the profile container */
    right: 0; /* Align with the right edge */
    background: red; /* White background for visibility */
    border-radius: 4px; /* Rounded corners */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Shadow for visibility */
    z-index: 1000; /* Ensure it appears above other content */
}

  .dropdown-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
  }
  
  .dropdown-menu a:hover {
    background-color: #f1f1f1;
  }
  .user-profile-container:hover .dropdown-menu,
.user-profile-container .dropdown-menu.show {
    display: block; /* Show dropdown */
}
