/*For the Header For Logout only*/
/* Modular Aproach */

.no_margin_padding{
  margin: 0px;
  padding: 0px;
}

.size_13{
  font-size: 13px;
}

.size_14{
  font-size: 14px;
}

.logout-button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #1F2937;
  padding: 10px;
}

.popup-links{
  border-top: 1px solid lightgrey;
  border-bottom: 1px solid lightgrey;
  margin: 0px;
  padding: 0px;

  display: flex;
  flex-direction: column;

  color: #1F2937;
}

.create-project-button{
  color: black;
  text-decoration: none;
}


/* Extra small devices (xs) — Below 576px */
@media (max-width: 575.98px) {
  header:not([class]){
    display: flex;
    align-items: center;

    max-height: 60px;
    height: 44px;
    width: 100%;
    margin: 0 auto;
    padding: 0;

    border-bottom: 2px solid rgba(128, 128, 128, 0.5);
    position: relative;
  }

  .left-side {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
  }

  .logo {
    overflow: hidden;
    max-height: 28px;
    max-width: 137px;
  }
  
  .logo img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  nav {
    max-height: 44px;
    max-width: 252px;
    width: 252px;
  }

  nav ul {
    display: flex;
    list-style: none;
    max-width: 252px;
    padding: 0;
    margin: 0px;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 0px 10px;
  }

  nav ul li a {
    font-size: 14px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: black;
  }

  .bold {
    font-weight: 700;
  }
  
  .right-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icon-menu { 
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    margin-right: 0px;
    max-height: 24px;
    max-width: 104px;
    width: 104px;
  }

  /* Google Like Icon */
  .profile-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    color: black;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    border: 1px solid black;

    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;

    flex-shrink: 0;
  }

  .profile-icon:hover {
    cursor: pointer;
    opacity: 0.8;
  }

  .profile-image-background{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }


  /*Notification Dot*/
  .mail-icon {
    position: relative;
    display: inline-block;
  }

  /*Notification Dot*/
  .notification-dot {  
    position: absolute;
    background-color: red;
    z-index: 10; 
    
    top: -1px; /* Adjust as needed to fine-tune the position */
    right: -3px; /* Adjust as needed to fine-tune the position */
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  /* Popup Window */
  .popup-window {
    display: none; 
    flex-direction: column; 
    position: absolute;
    background-color: white;
    top: 50px;  /* Adjust based on the height of the circular icon */
    right: 0;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1000;
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
  }
  
  .popup-window.show {
    display: flex;
    opacity: 1;
    width: auto;
    padding: 0px;
  }

  .popup-window a {
    margin: 10px;
    font-size: 14px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: #1F2937;
  }

  .popup-profile-image-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    gap: 5px;
  }

  .popup-profile-image-background{
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid black;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
  }

  .popup-name-email-container{
    text-align: start;
  }

  .view_profile_link_container, .edit_profile_link_container, .logout_link_container{
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-left: 10px;
  }

  .view_profile_link_container img, .edit_profile_link_container img, .logout_link_container img{
    object-fit: contain;
    max-width: 18px;
    height: auto;
  }

}

/* Small devices (sm) — 576px to 767.98px */
@media (min-width: 576px) and (max-width: 767.98px) {
  header:not([class]){
    display: flex;
    align-items: center;

    max-height: 60px;
    height: 44px;
    width: 100%;
    margin: 0 auto;
    padding: 0;

    border-bottom: 2px solid rgba(128, 128, 128, 0.5);
    position: relative;
  }

  .left-side {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
  }

  .logo {
    overflow: hidden;
    max-height: 28px;
    max-width: 137px;
  }
  
  .logo img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  nav {
    max-height: 44px;
    max-width: 252px;
    width: 252px;
  }

  nav ul {
    display: flex;
    list-style: none;
    max-width: 252px;
    padding: 0;
    margin: 0px;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  nav ul li a {
    font-size: 14px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: black;
  }

  .bold {
    font-weight: 700;
  }
  
  .right-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icon-menu { 
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    margin-right: 0px;
    max-height: 24px;
    max-width: 104px;
    width: 104px;
  }

  /* Google Like Icon */
  .profile-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    color: black;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    border: 1px solid black;

    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;

    flex-shrink: 0;
  }

  .profile-icon:hover {
    cursor: pointer;
    opacity: 0.8;
  }

  .profile-image-background{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }

  /*Notification Dot*/
  .mail-icon {
    position: relative;
    display: inline-block;
  }
  /*Notification Dot*/
  .notification-dot {
    top: -1px; /* Adjust as needed to fine-tune the position */
    right: -3px; /* Adjust as needed to fine-tune the position */
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  /* Popup Window */
  .popup-window {
    display: none; 
    flex-direction: column; 
    position: absolute;
    background-color: white;
    top: 50px;  /* Adjust based on the height of the circular icon */
    right: 0;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1000;
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
  }
  
  .popup-window.show {
    display: flex;
    opacity: 1; 
  }

  .popup-window a {
    margin: 10px;
    font-size: 14px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: #1F2937;
  }

  .popup-profile-image-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    gap: 5px;
  }

  .popup-profile-image-background{
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid black;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
  }

  .popup-name-email-container{
    text-align: start;
  }

  .view_profile_link_container, .edit_profile_link_container, .logout_link_container{
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-left: 10px;
  }

  .view_profile_link_container img, .edit_profile_link_container img, .logout_link_container img{
    object-fit: contain;
    max-width: 18px;
    height: auto;
  }

}

/* Medium devices (md) — 768px to 991.98px */
@media (min-width: 768px) and (max-width: 991.98px) {
  header:not([class]){
    display: flex;
    align-items: center;

    max-height: 60px;
    height: 44px;
    width: 100%;
    margin: 0 auto;
    padding: 0;

    border-bottom: 2px solid rgba(128, 128, 128, 0.5);
    position: relative;
  }

  .left-side {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
  }

  .logo {
    overflow: hidden;
    max-height: 28px;
    max-width: 137px;
  }
  
  .logo img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  nav {
    max-height: 44px;
    max-width: 252px;
    width: 252px;
  }

  nav ul {
    display: flex;
    list-style: none;
    max-width: 252px;
    padding: 0;
    margin: 0px;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  nav ul li a {
    font-size: 16px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: black;
  }

  .bold {
    font-weight: 700;
  }
  
  .right-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icon-menu { 
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    margin-right: 0px;
    max-height: 24px;
    max-width: 104px;
    width: 104px;
  }

  /* Google Like Icon */
  .profile-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    color: black;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    border: 1px solid black;

    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;

    flex-shrink: 0;
  }

  .profile-icon:hover {
    cursor: pointer;
    opacity: 0.8;
  }

  .profile-image-background{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }


  /*Notification Dot*/
  .mail-icon {
    position: relative;
    display: inline-block;
  }
  /*Notification Dot*/
  .notification-dot {
    top: -1px; /* Adjust as needed to fine-tune the position */
    right: -3px; /* Adjust as needed to fine-tune the position */
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  /* Popup Window */
  .popup-window {
    display: none; 
    flex-direction: column; 
    position: absolute;
    background-color: white;
    top: 50px;  /* Adjust based on the height of the circular icon */
    right: 0;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1000;
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
  }
  
  .popup-window.show {
    display: flex;
    opacity: 1; 
    width: auto;
    padding: 0px;
  }

  .popup-window a {
    margin: 10px;
    font-size: 14px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: #1F2937;
  }

  .popup-profile-image-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    gap: 5px;
  }

  .popup-profile-image-background{
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid black;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
  }

  .popup-name-email-container{
    text-align: start;
  }

  .view_profile_link_container, .edit_profile_link_container, .logout_link_container{
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-left: 10px;
  }

  .view_profile_link_container img, .edit_profile_link_container img, .logout_link_container img{
    object-fit: contain;
    max-width: 18px;
    height: auto;
  }
}

/* Large devices (lg) — 992px to 1199.98px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  header:not([class]){
    display: flex;
    align-items: center;

    max-height: 60px;
    height: 44px;
    width: 100%;
    margin: 0 auto;
    padding: 0;

    border-bottom: 2px solid rgba(128, 128, 128, 0.5);
    position: relative;
  }

  .left-side {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
  }

  .logo {
    overflow: hidden;
    max-height: 28px;
    max-width: 137px;
  }
  
  .logo img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  nav {
    max-height: 44px;
    max-width: 252px;
    width: 252px;
  }

  nav ul {
    display: flex;
    list-style: none;
    max-width: 252px;
    padding: 0;
    margin: 0px;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  nav ul li a {
    font-size: 16px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: black;
  }

  .bold {
    font-weight: 700;
  }
  
  .right-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icon-menu { 
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    margin-right: 0px;
    max-height: 24px;
    max-width: 104px;
    width: 104px;
  }

  /* Google Like Icon */
  .profile-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    color: black;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    border: 1px solid black;

    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;

    flex-shrink: 0;
  }

  .profile-icon:hover {
    cursor: pointer;
    opacity: 0.8;
  }

  .profile-image-background{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }


  /*Notification Dot*/
  .mail-icon {
    position: relative;
    display: inline-block;
  }
  /*Notification Dot*/
  .notification-dot {
    top: -1px; /* Adjust as needed to fine-tune the position */
    right: -3px; /* Adjust as needed to fine-tune the position */
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  /* Popup Window */
  .popup-window {
    display: none; 
    flex-direction: column; 
    position: absolute;
    background-color: white;
    top: 50px;  /* Adjust based on the height of the circular icon */
    right: 0;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1000;
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
  }
  
  .popup-window.show {
    display: flex;
    opacity: 1; 
    width: auto;
    padding: 0px;
  }

  .popup-window a {
    margin: 10px;
    font-size: 14px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: #1F2937;
  }

  .popup-profile-image-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    gap: 5px;
  }

  .popup-profile-image-background{
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid black;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
  }

  .popup-name-email-container{
    text-align: start;
  }

  .view_profile_link_container, .edit_profile_link_container, .logout_link_container{
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-left: 10px;
  }

  .view_profile_link_container img, .edit_profile_link_container img, .logout_link_container img{
    object-fit: contain;
    max-width: 18px;
    height: auto;
  }
}

/* Extra large devices (xl) — 1200px to 1399.98px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  header:not([class]){
    display: flex;
    align-items: center;

    max-height: 60px;
    height: 44px;
    width: 100%;
    margin: 0 auto;
    padding: 0;

    border-bottom: 2px solid rgba(128, 128, 128, 0.5);
    position: relative;
  }

  .left-side {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
  }

  .logo {
    overflow: hidden;
    max-height: 28px;
    max-width: 137px;
  }
  
  .logo img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  nav {
    max-height: 44px;
    max-width: 252px;
    width: 252px;
  }

  nav ul {
    display: flex;
    list-style: none;
    max-width: 252px;
    padding: 0;
    margin: 0px;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  nav ul li a {
    font-size: 16px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: black;
  }

  .bold {
    font-weight: 700;
  }
  
  .right-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icon-menu { 
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    margin-right: 0px;
    max-height: 24px;
    max-width: 104px;
    width: 104px;
  }

  /* Google Like Icon */
  .profile-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    color: black;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    border: 1px solid black;

    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;

    flex-shrink: 0;
  }

  .profile-icon:hover {
    cursor: pointer;
    opacity: 0.8;
  }

  .profile-image-background{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }


  /*Notification Dot*/
  .mail-icon {
    position: relative;
    display: inline-block;
  }
  /*Notification Dot*/
  .notification-dot {
    top: -1px; /* Adjust as needed to fine-tune the position */
    right: -3px; /* Adjust as needed to fine-tune the position */
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  /* Popup Window */
  .popup-window {
    display: none; 
    flex-direction: column; 
    position: absolute;
    background-color: white;
    top: 50px;  /* Adjust based on the height of the circular icon */
    right: 0;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1000;
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
  }
  
  .popup-window.show {
    display: flex;
    opacity: 1;
    width: auto;
    padding: 0px;
  }

  .popup-window a {
    margin: 10px;
    font-size: 14px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: #1F2937;
  }

  .popup-profile-image-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    gap: 5px;
  }

  .popup-profile-image-background{
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid black;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
  }

  .popup-name-email-container{
    text-align: start;
  }

  .view_profile_link_container, .edit_profile_link_container, .logout_link_container{
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-left: 10px;
  }

  .view_profile_link_container img, .edit_profile_link_container img, .logout_link_container img{
    object-fit: contain;
    max-width: 18px;
    height: auto;
  }
}

/* Extra extra large devices (xxl) — 1400px and above */
@media (min-width: 1400px) {
  header:not([class]){
    display: flex;
    align-items: center;

    max-height: 60px;
    height: 44px;
    width: 100%;
    margin: 0 auto;
    padding: 0;

    border-bottom: 2px solid rgba(128, 128, 128, 0.5);
    position: relative;
  }

  .left-side {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
  }

  .logo {
    overflow: hidden;
    max-height: 28px;
    max-width: 137px;
    margin-left: 20px;
  }
  
  .logo img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  nav {
    max-height: 44px;
    max-width: 252px;
    width: 252px;
  }

  nav ul {
    display: flex;
    list-style: none;
    max-width: 252px;
    padding: 0;
    margin: 0px;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  nav ul li a {
    font-size: 16px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: black;
  }

  .bold {
    font-weight: 700;
  }
  
  .right-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .icon-menu { 
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    margin-right: 0px;
    max-height: 24px;
    max-width: 104px;
    width: 104px;
  }

  /* Google Like Icon */
  .profile-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    color: black;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    border: 1px solid black;

    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;

    flex-shrink: 0;
  }

  .profile-icon:hover {
    cursor: pointer;
    opacity: 0.8;
  }

  .profile-image-background{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }


  /*Notification Dot*/
  .mail-icon {
    position: relative;
    display: inline-block;
  }
  /*Notification Dot*/
  .notification-dot {
    top: -1px; /* Adjust as needed to fine-tune the position */
    right: -3px; /* Adjust as needed to fine-tune the position */
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  /* Popup Window */
  .popup-window {
    display: none; 
    flex-direction: column; 
    position: absolute;
    background-color: white;
    top: 50px;  /* Adjust based on the height of the circular icon */
    right: 0;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 1000;
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
  }
  
  .popup-window.show {
    display: flex;
    opacity: 1;
    width: auto;
    padding: 0px;
  }

  .popup-window a {
    margin: 10px;
    font-size: 14px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-decoration: none;
    color: #1F2937;
  }

  .popup-profile-image-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    gap: 5px;
  }

  .popup-profile-image-background{
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid black;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
  }

  .popup-name-email-container{
    text-align: start;
  }

  .view_profile_link_container, .edit_profile_link_container, .logout_link_container{
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-left: 10px;
  }

  .view_profile_link_container img, .edit_profile_link_container img, .logout_link_container img{
    object-fit: contain;
    max-width: 18px;
    height: auto;
  }

}