* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
}

.app-container {
    width: 100%;
    max-width: 500px;
    background-color: white;
}

.header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo {
    padding: 5px 8px 5px 0px;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
}
.logo a {font-weight: 700; color: #000;text-decoration: none;font-size: 20px;}
.logo img {
    /* background-color: #ffe600; */
    width:26px;
    height:26px;
    display: inline-block;
    margin-right: 10px;
}

.search-bar {
    flex: 0 0 auto; /* 변경: flex-grow를 0으로 설정하여 자동으로 늘어나지 않게 함 */
    display: flex;
    width: 150px; /* 변경: 너비를 더 작게 설정 */
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 25px;
    padding: 6px 10px; /* 변경: 좌우 패딩 추가 */
    margin-left: auto; /* 변경: 오른쪽 정렬을 위해 추가 */
}

.search-bar input {
    border: none;
    background: transparent;
    flex: 1;
    font-size: 12px;
    color: #999;
    width: 60px; /* 변경: 인풋의 너비를 명시적으로 제한 */
    padding: 0 5px; /* 변경: 패딩 추가 */
}

.search-icon {
    color: #999;
    font-size: 14px;
}

.tabs {
    display: flex;
    padding: 0 20px;
    /* border-bottom: 1px solid #f0f0f0; */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom:10px; */
}

.tab {
    padding: 10px 0;
    margin-right: 15px;
    font-size: 14px;
    color: #666;
    position: relative;
    margin-bottom:1px;
}

.tab a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    padding:0px 15px;
}
.tab.active {
    color: #000;
    font-weight: bold;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF80C9;;
}


.banner img {
    width: 100%;
    height: auto;
    display: block;
}







