@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

body {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* nav */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    padding: 0 20px;
    background-color: #fff;
}

nav .menu {
    gap: 60px;
    display: flex;
}

nav .menu a {
    position: relative;
}

nav .menu a:hover,
nav .menu a.active {
    font-weight: bold;
    color: #6142E9;
}

nav .menu a::after {
    content: '';
    position: absolute;
    bottom: -27px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6142E9;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav .menu a:hover::after,
nav .menu a.active::after {
    transform: scaleX(1);
}

/* login */
.login {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login a {
    display: none;
    align-items: center;
    gap: 5px;
}

.login a.active {
    display: flex;
    color: #000;
}

.login-container {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    padding: 20px;
    width: 450px;
    ;
}

.login-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 30px;
    color: #333;

}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.login-input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.login-button {
    padding: 15px;
    background-color: #6c5ce7;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

.login-button:hover {
    background-color: #6142E9;
}


/* footer */
footer p {
    text-align: center;
    color: #bebeca;
    font-size: 13px;
    font-weight: 300;
    margin: 50px;
}

/* 공통 스타일 */
.header-title {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    margin-bottom: 10px;
    align-items: center;
}

.header-title .project-count {
    color: #6142E9;
}

.header-title a.more {
    color: #666D73;
    font-weight: 300;
}

.content-wrapper .inner:last-child {
    margin-bottom: 0;
}

.content-wrapper .inner p {
    color: #8D8D8D;
    font-size: 15px;
    font-weight: 400;
}

.content-wrapper .inner {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.project .title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.project .title-wrapper .title {
    font-size: 18px;
    font-weight: 500;
}

/* 팝업 헤더 스타일 */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10px;
}
.notification-popup  .popup-header {
    padding: 20px 10px;
}       
.popup-header h4 {
    font-size: 18px;
    font-weight: 700;
}

.popup-close-btn {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    border-radius: 50%;
    font-size: 2px;
    line-height: 1;
    cursor: pointer;
    color: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.popup-close-btn:hover {
    background-color: #f5f5f5;
}

.wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-wrapper {
    margin-bottom: 20px;
}

.notice-wrapper:last-child {
    margin-bottom: 0;
}

.notice-wrapper .notice-title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 17px;
    font-weight: 600;
    width: 100%;
}

.notice-wrapper .notice-title span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-wrapper .info-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 300;
    color: #AAADB0;
    margin-top: 10px;
}

.notice-wrapper .info-wrapper span::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #aaadb064;
    margin-left: 10px;
}

.notice-wrapper .info-wrapper span:last-child::after {
    display: none;
}
