.profile-container { width: 500px; margin: 40px auto; padding: 15px 10px; border-radius: 5px; border: 1px solid #ced4da;}
@media(max-width: 768px) {.profile-container {width: 450px;}}
.profile_email {margin-bottom: 40px; text-transform: uppercase; color: #0caBE0; font-size: 20px; font-weight: bold;}

.profile_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* 왼쪽 - 오른쪽 정렬 */
    border: 1px solid #7f7f7f;
    border-top: none;
    border-left: none;
    border-right: none;
    margin: 10px 0;
    padding: 8px 0;
    flex-wrap: wrap; /* 줄바꿈 허용 (입력창+버튼 둘 다 나오게) */
}

.profile_title {margin: 5px 0 4px 0; font-weight: bold;}
.profile_contents {margin: 5px 10px 0 auto;}

.verification-section {
  display: flex;
  align-items: flex-end;  /* 버튼을 입력창 아래에 살짝 맞추기 */
  gap: 8px; /* 요소 간 간격 */
  margin-top: 20px;
}

.verification-input {
  height: 32px;
  padding: 4px 8px;
  font-size: 14px;
  flex: 1; /* 공간 채우기 (선택사항) */
}

.cancel-button,
.submit-button {
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cancel-button {
  background-color: #444;
}

.submit-button {
  background-color: #222;
}

/* .code-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
} */

.code-input-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#verification-code {
  flex: 1;
  padding: 6px;
  font-size: 14px;
}

.verification-input {
  height: 36px;
  padding: 6px 12px;
  font-size: 14px;
  flex: 1;
  max-width: 300px;
}

#submit-code-button {
  padding: 6px 12px;
}

.submit_button {width: 5% !important; margin-right: 10px; font-size: 12px !important;}

.button-group {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #7f7f7f;
    border-top: none;
    border-left: none;
    border-right: none;
    margin: 10px 0;
    padding: 8px 0;
    flex-wrap: wrap; /* 줄바꿈 허용 (입력창+버튼 둘 다 나오게) */
    justify-content: center;
    gap: 20px;
}

.verify_button {
    width: 30%;
    height: 35px;
    padding: 0;
    object-fit: cover;
    background-color: #343a40;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.verify_button:disabled {
    opacity: 0.5;        /* 흐리게만 하고 */
    cursor: not-allowed; /* 커서만 바꾸고 */
    display: inline-block; /* 사라지지 않게 유지 */
}
.verify_button:hover,
.verify_button:active,
.verify_button:focus {
  background-color: #343a40; /* 클릭, 포커스, 호버 시에도 유지 */
  color: white;
  outline: none; /* 포커스 테두리 제거 */
}

.cancel_button {
    width: 30%;
    height: 35px;
    padding: 0;
    object-fit: cover;
    background-color: #343a40;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.cancel_button:hover,
.cancel_button:active,
.cancel_button:focus {
  background-color: #343a40; /* 클릭, 포커스, 호버 시에도 유지 */
  color: white;
  outline: none; /* 포커스 테두리 제거 */
}

.contents-main-submit-button {
    width: 30%;
    height: 35px;
    padding: 0;
    object-fit: cover;
    background-color: #343a40;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.authentication-container {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto 10px auto;  /* ✅ 하단 여백 추가 */
    gap: 10px; /* ✅ input과 버튼 사이 간격 */
}

.email-code-container {
    display: none;
}
.input-field { 
    height: 35px;
    padding: 0 10%;
}
.authentication-button {
  width: 30%;
  height: 35px;
  padding: 0;
  object-fit: cover;
  background-color: #343a40;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.authentication-button:hover,
.authentication-button:active,
.authentication-button:focus {
  background-color: #343a40; /* 클릭, 포커스, 호버 시에도 유지 */
  color: white;
  outline: none; /* 포커스 테두리 제거 */
}

.signup-email { 
    width: 50%;
    border-radius: 5px 0px 0px 0px;
}


.swal2-actions {
  display: flex !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* .swal2-cancel {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
  transition: none !important;
} */

.swal2-confirm {
  color: white !important;
  background-color: #6E7881 !important;
  border: 1px solid #6E7881 !important;
  transition: background-color 0.2s ease;
}

.swal2-confirm:hover {
  background-color: #5d656c !important; /* 살짝 더 어두운 색 */
}