@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard Variable', sans-serif;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: #222;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    padding-right: 35px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 48px;
    width: 48px;
    margin-right: 10px;
}
.logo h1 {
    font-size: 22px;
    font-weight: 700;
    color: #ff7a00;
}

#userul {
    display: flex;
    align-items: center;
}
.Userlogin {
    display: flex;
    align-items: center;
    gap: 14px;
}

.Userlogin img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.Userlogin span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.Userlogin .login-form {
    display: none;
    align-items: center;
    gap: 12px;
}

.activelogin .login-form {
    display: flex;
}
.activelogin #alogin {
    display: none;
}
#alogout {
    background-color: #227aff;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    white-space: nowrap;
}
#alogout:hover {
    background-color: #1a5ddc;
}

#alogin,
#alogout {
    background-color: #ff7a00;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}
#alogin:hover,
#alogout:hover {
    background-color: #ffa653;
}
.activelogin .login-form {
    display: flex;
    align-items: center;
    gap: 14px;
}