/* Header */
.header {
    display: flex;
    width: 100%;
    padding: 3.2px;
    padding-left: 8px;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    color: var(--color-black);
    border-bottom: .0625rem solid var(--color-black);
}

.header__auth {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.header__profile-button {
    background: none;
    border: none;
    outline: 1px solid var(--color-KTA);
    padding: 0.5rem 0.5rem;
    border-radius: .25rem;
    font-size: 16px;
    cursor: pointer;
    background-color: var(--color-KTA);
}

.header__profile-button .profile-icon {
    width: 25px;
    height: 25px;
    color: var(--color-KTA);
}

.header__profile-button:hover {
    background-color: var(--color-2nd-KTA);
}

.header__auth-button {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    margin-right: 1rem;
}

.header-right {
    display: flex;
    align-items: center;
}

.user-info {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    padding: 0.6rem 1rem;
    margin-right: 1rem;
    border-radius: .5rem;
    width: 100px;
}

.profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    border-radius: 4px;
    width: 200px;
    z-index: 10;
    /* overflow: hidden; */
}

.dropdown-menu a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px 20px;
    color: #343a40;
    padding: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

/* 드롭다운 메뉴 표시를 위한 클래스 */
.user-info.show .dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile_info {
    display: flex;
    cursor: text;
    width: 100%;
    gap: .7rem;
    border-bottom: 1px rgb(194, 188, 188) solid;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem;
}

.item-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.usr_nm {
    color: rgb(51, 43, 43);
    font-size: 22px;
    font-weight: bold;
}

.usr_cpy {
    color: rgb(136, 122, 122);
    font-size: 20px;
    font-weight: bold;
}

.dropdown-item {
    width: 100%;
}

.dropdown-item a {
    display: flex;
    font-size: 16px;
    font-weight: bold;
    flex-direction: row;
    gap: .5rem;
}