.banner-area {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 200px;
    background-color: #1f2241;
    margin-bottom: 30px;
    text-align:center;
    overflow: hidden;
    min-width: 1320px;
}
.banner-area .banner-item {
    width:1980px;
    height:200px;
}

.banner-area-detail {
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-title-detail {
    color: #2B2B2B;
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    line-height: normal;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 9px;
}

.button-group .btn {
    width: 165px;
    height: 53px;
    cursor: pointer;
    border-radius: 10px;
    background: #E5F0E5;
    color: #7B8F7B;
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    line-height: normal;
    border: none;
}

.button-group .btn.active {
    width: 164px;
    height: 53px;
    border-radius: 10px;
    background: #50C350;
    color: #FFF;
    font-size: 19px;
    font-weight: 700;
    line-height: normal;
    border: none;
}

.search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
    height: 53px;
    border-radius: 10px;
    background: #EDEDED;
    padding: 0 20px;
}

.search-box input {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: #333;
}

.search-box input::placeholder {
    color: #999;
    font-size: 16px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn img {
    width: 25px;
    height: 24px;
    object-fit: contain;
}

.brand-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.brand-item {
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: none;
    cursor: pointer;
    border:1px solid #ccc;
}

.brand-image {
    width: 319px;
    height: 319px;
    overflow: hidden;
    /* background-color: #D9D9D9; */
    /* border-radius: 10px; */
    background:#fff;
    text-align: center;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding:10px;
}

.brand-info {
    padding: 20px 10px;
}

.brand-title {
    margin: 0;
    margin-bottom: 5px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}

.brand-detail{
    margin: 0;
    margin-bottom: 10px;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.brand-date {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination a {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.pagination a.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.brand-item:hover {
    transform: translateY(-5px);
    transition: transform 0.2s ease-in-out;
}

.region-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.region-filter-detail {
    display: flex;
    gap: 10px;
}

.region-btn {
    width: 95px;
    height: 40px;
    padding: 10px;
    border-radius: 10px;
    background: #FFFFFF;
    border: 0.5px solid #535353;
    color: #333333;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.region-btn.active {
    background: #398239;
    color: #FFFFFF;
    border: none;
    font-weight: 700;
}

.region-btn:hover {
    background: #E5F0E5;
    color: #50C350;
    border-color: #E5F0E5;
}

#calendar {
    margin-bottom: 50px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

/* FullCalendar 커스텀 스타일 */
.fc .fc-toolbar-title {
    font-size: 1.5em;
    color: #333;
}

.fc .fc-button-primary {
    background-color: #50C350;
    border-color: #50C350;
}

.fc .fc-button-primary:hover {
    background-color: #398239;
    border-color: #398239;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background-color: #398239;
    border-color: #398239;
}

.fc-daygrid-day.fc-day-today {
    background-color: #E5F0E5 !important;
}

.fc-event {
    background-color: #50C350;
    border-color: #50C350;
}

/* 검색 결과 없음 컨테이너는 전체 너비 사용 */
.no-results {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1 / -1; /* 전체 그리드 열을 차지 */
}

.no-results-text {
    color: #2B2B2B;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    width: 100%; /* 전체 너비 사용 */
}