.main_contents > img {
    width: 100%;
}
.text_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.text_box {
    cursor: pointer;
}
.text_book_img {
    width: 100%;
    height: auto;
    aspect-ratio: 65/92;
    background: #D9D9D9;
    margin-bottom: 12px;
    object-fit: cover;
}
.text_book_subject {
    color: var(--color-gray70, #2B2B2B);
    font-size: var(--fontSize-20, 20px);
    font-weight: 500;
    margin-bottom: 5px;
    word-break: keep-all;
}
.text_book_price {
    color: var(--color-gray70, #2B2B2B);
    font-size: var(--fontSize-18, 18px);
    font-weight: 700;
}

.search_filter_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 30px;
}
.filter_dates {
    display: flex;
    align-items: center;
    gap: 10px;
}
.date_input_group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 4px;
    background: #fff;
    height: 42px;
}
.date_input_group input[type="date"] {
    border: none;
    outline: none;
    color: #555;
    font-family: inherit;
}
.btn_preset {
    padding: 15px 20px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
}
.btn_preset.active,
.btn_preset:hover {
    border-color: #008CCF;
    color: #008CCF;
}
.search_input_group {
    display: flex;
    flex: 1;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 5px 20px;
    background: #fff;
    max-width: 400px;
}
.search_input_group input {
    border: none;
    outline: none;
    flex: 1;
    height: 35px;
}
.btn_search_submit {
    background: #008CCF;
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 45px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

/* 주문 내역 테이블 */
.order_table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    border-top: 2px solid #333;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
.order_table th {
    padding: 15px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #121212;
    background-color: #fff;
}
.order_table td {
    padding: 15px 10px;
    font-size: 14px;
    color: #555;
    vertical-align: middle;
    border-bottom: 1px solid var(--color-gray30, #B3B3B3);
    background: var(--color-gray0, #FFF);
}

.order_table td.no_border_bottom {
    border-bottom: none !important;
}

.order_table td.bg_light_blue {
    background-color: #DEF1FB;
    color: #008CCF;
    font-weight: 500;
}

.order_table td.text_left {
    text-align: left;
}

.btn_sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.btn_delivery {
    color: #333;
    border-radius: 4px;
    background: var(--color-navy10, #E6E7EC);
    color: var(--color-mainnavy, #042A59);

    /* Body/18 */
    font-family: var(--font-type, Pretendard);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
}
.btn_cancel {
    background-color: #F5F5F5;
    color: #666;
}
.empty_row {
    padding: 50px 0 !important;
    color: #999 !important;
}
