table {
        height: 200px;
        margin: auto;
        font-size: 11px;
        margin-top: 5px
        }
    /* New styles for user info display container */
    .login-info-container {
      display: flex;
      flex-direction: column;
      gap: 18px;
      width: 100%;
      max-width: 390px;
      padding-top: 25px;
      text-align: center;
      margin: auto;
    }
    
    /* 공통 줄 스타일 */
    .user-info-row {
      display: flex;
      gap: 10px;
    }
    
    /* 1번 줄: 각 항목 수동 너비 */
    .first-row .user-info-item:nth-child(1) {
      width: 110px;
      justify-content: center;
    }
    .first-row .user-info-item:nth-child(2) {
      width: 190px;
      justify-content: center;
    }
    .first-row .user-info-item:nth-child(3) {
      width: 70px;
      justify-content: center;
    }
    
    .second-row .user-info-item {
      width: 390px;
    }
    
    /* 정보 박스 스타일 (버튼처럼, 회색 배경) */
    .info-box {
      background-color: rgb(233, 233, 233);
      height: 35px;
      border-radius: 15px;
      padding: 0px;
      display: flex;
      align-items: center;
      gap: 7px;
      box-sizing: border-box;
      font-size: 12px;
      text-align: center;
    }
    
    /* 라벨: 검정 배경 + 흰 글씨 */
    .info-label {
      background-color: rgb(233, 233, 233);
      color: #000;
      padding: 0px;
      border-radius: 4px;
      font-weight: bold;
      font-size: 12px;
    }
    
    /* 값: 파란 글씨, 배경 없음 */
    .info-value {
      color: #007bff;
      font-size: 12px;
    }

    /* 2번 줄 가운데 정렬 */
    .second-row {
      justify-content: center;
    }
    
    .second-row .user-info-item {
      display: flex;
      justify-content: center;
      width: 390px;
      height: 35px;
      background-color: rgb(233, 233, 233);
      border-radius: 15px;
      gap: 7px;
      box-sizing: border-box;
      padding: 0px;
    }
    
    /* 로그아웃 버튼 줄 가운데 정렬 */
    .logout-button-container {
      justify-content: center;
    }
    
    /* 버튼 스타일 */
    .btn {
      width: 390px;
      height: 50px;
      font-size: 16px;
      font-weight: bold;
      border: 0;
      border-radius: 15px;
      outline: none;
      padding-left: 0px;
      background-color: rgb(164, 199, 255);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #000;
    }
    
    .btn:active {
      background-color: rgb(61, 135, 255);
    }

    /* Existing styles for input fields */
    input[type="text"], input[type="password"] {
        width: 260px;
        height: 32px;
        font-size: 15px;
        border: 0;
        border-radius: 15px;
        padding-left: 20px;
        outline: none;
        background-color: rgb(233,233,233);
        margin-top: 0px
    }
    .btn {
        width: 282px;
        height: 45px;
        font-size: 20px;
        border: 0;
        border-radius: 15px;
        outline: none;
        padding-left: 10px;
        background-color: rgb(164, 199, 255);
    }
    .btn:active {
        width: 282px;
        height: 45px;
        font-size: 15px;
        border: 0;
        border-radius: 15px;
        outline: none;
        padding-left: 10px;
        background-color: rgb(61, 135, 255);
    }
    /* New styles for logout button */
    .logout-btn {
        width: 390px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
        align-items: center;
        font-weight: bold;
        color: #000;
        text-align: center;
        text-decoration: none;
        display: block;
        background-color: rgb(164, 199, 255);
        border-radius: 15px;
    }
    .logout-btn:active {
        background-color: rgb(61, 135, 255);
        width: 260px;
    }
    a {
        font-size: 12px;
        color: 353434;
        text-decoration-line: none;
       
    }
    .join {
        text-align: center;
    }

.login-error-message {
    width: 330px; /* Match login-info-container width */
    height: 35px;
    line-height: 35px;
    margin: 0px auto;
    padding: 0px;
    border: 1px solid #dc3545; /* Red border */
    border-radius: 5px;
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
    text-align: center;
    font-weight: bold;
    align-items: center;
}