/* 주문 페이지 스타일 */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.footer {
    margin-top: auto;
}

/* 서비스 목록 스타일 */
.service-item {
    padding: 0.75rem 1rem;
    border-left: none;
    border-right: none;
    transition: all 0.2s ease;
}

.service-item:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

.service-item.active {
    background-color: rgba(0, 123, 255, 0.1);
    border-left: 3px solid #0d6efd;
    padding-left: calc(1rem - 3px);
}

.service-item .badge {
    font-size: 0.75rem;
}

/* 카드 스타일 */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 0.75rem 1rem;
}

/* 폼 스타일 */
.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control:disabled, 
.form-control[readonly] {
    background-color: #f8f9fa;
}

/* 아코디언 스타일 */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 123, 255, 0.1);
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* 모바일 대응 */
@media (max-width: 767.98px) {
    .service-list {
        max-height: none;
    }
} 