.header-order {
    padding: .8rem 1rem;
}

.header-order .page-title {
    font-size: 1.2rem;
}

.create-order-page .column-title {
    font-size: 1rem;
    font-weight: 600;
}

.main-container {
    border-top: 1px solid var(--bs-border-light);
    grid-template-columns: 22rem 1fr 25rem;
    height: calc(100vh - 60px);
}

.main-container .left-panel {
    width: 22rem;
    background-color: var(--bs-white);
    border-right: 1px solid var(--bs-border-light);
    overflow: auto;
    min-height: 0;
}

.main-container .center-panel {
    flex: 1;
    background-color: var(--bs-white);
    overflow: hidden;
}

.main-container .right-panel {
    flex: 1;
    width: 25rem;
    background-color: var(--bs-white);
    border-left: 1px solid var(--bs-border-light);
    overflow: hidden;
    min-height: 0;
}

.column-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.order-form {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    overflow-x: hidden;
}

.customer-card {
    background-color: #f5f6f8;
    border-radius: .8rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.customer-card .customer-avatar {
    width: 3rem;
    height: 3rem;
    background-color: var(--bs-white);
}

.diagnostic-content {
    flex: 1;
    overflow: auto;
    min-height: 0;
}

.question-card {
    background: #f5f6f8;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.question-card .question-number {
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    background: #000;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.question-card  .question-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.question-card .answer-btn {
    --bs-btn-font-size: 1rem;
    --bs-btn-padding-x: .8rem;
    --bs-btn-padding-y: .6rem;
    --bs-btn-border-radius: 0.6rem;
    --bs-btn-hover-border-color: var(--bs-black)
}

.question-card .answer-btn:hover {
    --bs-btn-border-width: 2px
}


.service-grid {
    grid-template-columns: repeat(2, 1fr);
}

.service-grid .service-card {
    border: 1px solid var(--bs-border-light);
    border-radius: 0.5rem;
    padding: .6rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.service-card.selected {
    border-color: #000;
    box-shadow: inset 0 0 0 1px rgb(0, 0, 0);
}

.service-grid .service-card .service-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.history-section .history-item{
    padding: 0.75rem;
}

.call-header .status-dot {
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    animation: pulsar 2s infinite;
}

.order-summary .summary-item {
    line-height: 2;
}

.order-summary  .summary-value {
    font-weight: 500;
}

    /* Quick Actions Bar */

.quick-actions-bar .quick-actions {
    position: fixed;
    bottom: 90px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 100;
}

.quick-actions-bar .quick-action-btn {
    width: 56px;
    height: 56px;
    background-color: #fff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.quick-actions-bar .quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}