/* Buttons */
.auth-buttons {
   display: flex;
   gap: 12px;
}

.auth-buttons button {
   background-color: rgb(0, 0, 0);
   /* border: 1px solid white; */
   color: rgb(255, 255, 255);
   padding: 8px 12px;
   cursor: pointer;
   font-size: 14px;
   border-radius: 6px;
   transition: background 0.3s, color 0.3s, transform 0.1s;
   white-space: nowrap;
   width: 100px;
   text-align: center;
   box-sizing: border-box;
   box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.auth-buttons button:hover {
   background-color: rgb(172, 172, 172);
   color: rgb(255, 255, 255);
}

.auth-buttons button:active {
   transform: scale(0.96);
}

.logout-button {
   flex-direction: row;
   justify-content: flex-end;
   display: flex;
   /* justify-content: flex-end; */
   flex-wrap: nowrap;
   align-items: center;
   gap: 20px;
   width: 100%;
}

.logout-button button {
   color: white;
   background: #1d1d1d;
   padding: 8px 8px;
   cursor: pointer;
   font-size: 14px;
   border-radius: 6px;
   transition: background 0.3s, color 0.3s, transform 0.1s;
   white-space: nowrap;
   width: auto;
   text-align: center;
   box-sizing: content-box;
   box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logout-button button:hover {
   background-color: white;
   color: rgb(245, 2, 2);
}

.logout-button button:active {
   transform: scale(0.96);
}



/* Mobile */
@media (max-width: 480px) {

   .auth-buttons {
      display: flex;
      gap: 10px;
   }

   .auth-buttons button {
      width: auto;
      /* let buttons adjust naturally on mobile */
      min-width: 80px;
      font-size: 12px;
      padding: 4px 6px;
   }

   .logoOut-button {
      gap: 10px;
      order: 1;
   }

   .logout-button button {
      color: white;
      background: #1d1d1d;
      padding: 8px 6px;
      cursor: pointer;
      font-size: 12px;
      border-radius: 6px;
      transition: background 0.3s, color 0.3s, transform 0.1s;
      white-space: nowrap;
      min-width: 60px;
      text-align: center;
      box-sizing: content-box;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
   }

}