/**
 * チケット予約システム - 公開画面スタイルシート
 */

/* ===================================
   基本設定
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
                 "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   ヘッダー
   =================================== */
.site-header {
    background: white;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-title {
    font-size: 20px;
    font-weight: 600;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.main-nav a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

.main-nav a:hover {
    background: #f0f0f0;
}

/* ===================================
   メインコンテンツ
   =================================== */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 20px 0;
}

/* CMバナーエリア */
.cm-banner {
    width: 100%;
    overflow: hidden;
    /* 内部コンテンツのスタイルは管理画面で自由に設定 */
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

/* ===================================
   公演一覧グリッド
   =================================== */
.events-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.event-card {
    flex: 0 1 340px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.event-card.sold-out {
    opacity: 0.6;
}

.event-date {
    background: #667eea;
    color: white;
    padding: 15px;
    text-align: center;
}

.event-date .month {
    display: block;
    font-size: 14px;
}

.event-date .day {
    display: block;
    font-size: 32px;
    font-weight: bold;
}

.event-date .weekday {
    display: block;
    font-size: 12px;
}

.event-info {
    padding: 20px;
}

.event-info h2 {
    margin-bottom: 10px;
}

.event-info .venue,
.event-info .time,
.event-info .price {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.event-info .price {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

.availability {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seats-info {
    font-size: 14px;
    color: #666;
}

/* ===================================
   バッジ
   =================================== */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

/* ===================================
   ボタン
   =================================== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ===================================
   座席選択画面
   =================================== */
.event-details {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.event-details p {
    margin-bottom: 8px;
}

.seat-legend {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.seat-icon {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 2px solid #ddd;
}

.seat-icon.available {
    background: #667eea;
    border-color: #667eea;
}

.seat-icon.reserved {
    background: #ffc107;
    border-color: #ffc107;
}

.seat-icon.selected {
    background: #10b981;
    border-color: #10b981;
}

.seat-icon.sold {
    background: #dc3545;
    border-color: #dc3545;
}

.seat-map-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    overflow-x: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#seatMap .seat-available {
    fill: #90EE90;
    cursor: pointer;
    transition: fill 0.2s;
}

#seatMap .seat-available:hover {
    fill: #7CFC00;
}

#seatMap .seat-selected {
    fill: #667eea;
}

#seatMap .seat-reserved {
    fill: #FFD700;
}

#seatMap .seat-sold {
    fill: #ccc;
    cursor: not-allowed;
}

.selected-seats-panel {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.selected-seats-panel h3 {
    margin-bottom: 15px;
}

.selected-seats-panel ul {
    list-style: none;
    margin-bottom: 15px;
}

.selected-seats-panel li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* 選択座席リスト表示 */
.selected-seats-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: visible;
    width: 100%;
}

.selected-seats-list li {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.selected-seats-list li:last-child {
    border-bottom: none;
}

.selected-seats-list li span {
    flex: 1;
    word-break: break-word;
    margin-left: 30px;
}

.selected-seats-list button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
    flex-shrink: 0;
    transition: background 0.2s;
    white-space: nowrap;
}

.selected-seats-list button:hover {
    background: #c82333;
}

/* ===================================
   自由席リスト
   =================================== */
.free-seats-list {
    display: grid;
    gap: 20px;
}

.free-seat-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.free-seat-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.free-seat-section form {
    display: flex;
    gap: 15px;
    align-items: end;
    margin-top: 15px;
}

.free-seat-section label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.free-seat-section input {
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* ===================================
   決済画面
   =================================== */
.checkout-summary {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.checkout-summary h3 {
    font-size: 18px;
    margin: 20px 0 10px;
}

.checkout-summary ul {
    list-style: none;
    margin: 15px 0;
}

.checkout-summary li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.total-amount {
    font-size: 24px;
    color: #667eea;
    margin: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

#card-errors {
    color: #dc3545;
    margin-top: 10px;
    font-size: 14px;
}

/* ===================================
   購入完了画面
   =================================== */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.success-message h1 {
    color: #155724;
    margin-bottom: 10px;
}

.order-detail {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.order-info {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 15px;
    margin-top: 20px;
}

.order-info dt {
    font-weight: 600;
    color: #666;
}

.order-info dd {
    color: #333;
}

.order-info ul {
    list-style: none;
}

.order-info li {
    padding: 5px 0;
}

.ticket-info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.ticket-info h3 {
    margin-bottom: 10px;
    color: #0c5460;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.notes {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.notes h4 {
    margin-bottom: 10px;
}

.notes ul {
    margin-left: 20px;
}

.notes li {
    margin-bottom: 5px;
}

/* ===================================
   アラート
   =================================== */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ===================================
   フッター
   =================================== */
.site-footer {
    background: #333;
    color: white;
    padding: 30px 0;
}

.footer-content {
    text-align: center;
}

.footer-nav {
    margin-top: 15px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* ===================================
   レスポンシブデザイン
   =================================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .events-grid {
        gap: 15px;
    }

    .event-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .seat-map-container {
        overflow-x: scroll;
    }
    
    #seatMap {
        min-width: 600px;
    }
    
    .order-info {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .free-seat-section form {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===================================
   グリッドレイアウト座席表示
   =================================== */
/* PC表示時のコンテナ幅拡張 */
@media (min-width: 1025px) {
    /* グリッドレイアウト用の広いコンテナ */
    .container.wide-container {
        max-width: 1600px !important;
    }
    
    .customer-grid-container {
        grid-template-columns: 1fr 280px;
    }
    
    .grid-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: visible !important;
    }
    
    .seat-grid-table {
        margin: 0 !important;
        width: 100% !important;
        table-layout: auto !important;
    }
    
    .seat-grid-table td,
    .seat-grid-table th {
        width: 48px;
        height: 48px;
        min-width: 48px;
        max-width: 48px;
        font-size: 13px;
        line-height: 48px;
    }
    
    .grid-row-label {
        width: 55px;
        min-width: 55px;
        max-width: 55px;
        height: 48px;
        line-height: 48px;
        font-size: 14px;
    }
    
    /* 選択座席パネルのサイズを固定 */
    .selected-seats-panel {
        max-width: 280px;
        width: 280px;
        padding: 16px;
    }
    
    .selected-seats-panel h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .selected-seats-list {
        max-height: 250px;
        font-size: 13px;
    }
    
    .selected-seats-list li {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .selected-seats-list li span {
        margin-left: 20px;
    }
    
    .selected-seats-list button {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .selected-seats-panel button[type="submit"] {
        max-width: 100%;
        font-size: 14px;
        padding: 12px 16px;
        white-space: nowrap;
    }
    
    .selected-seats-panel #removeSelectedBtn {
        font-size: 13px;
        padding: 8px 12px;
    }
}

.customer-grid-container {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* グリッド拡大縮小コントローラー */
.grid-zoom-controls {
    display: none;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 6px;
    border: 1px solid #ddd;
    grid-column: 1 / -1;
    width: 100%;
}

.btn-zoom {
    padding: 8px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-zoom:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.btn-zoom:active {
    transform: scale(0.95);
}

.zoom-level-display {
    min-width: 60px;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.grid-wrapper {
    overflow-x: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 100%;
}

.seat-grid-table {
    border-collapse: collapse;
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    table-layout: fixed;
}

.seat-grid-table * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.seat-grid-table td,
.seat-grid-table th {
    width: 36px;
    height: 36px;
    min-width: 36px;
    max-width: 36px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ddd;
    padding: 0;
    font-size: 11px;
    line-height: 36px;
}

.seat-grid-table thead {
    background: #f5f5f5;
}

/* 列ラベル（ヘッダー） */
.grid-col-header {
    background: #f0f0f0;
    font-weight: 600;
    font-size: 10px;
    color: #666;
    vertical-align: middle;
}

/* 行ラベル */
.grid-row-label {
    background: #f0f0f0;
    font-weight: 700;
    font-size: 12px;
    color: #333;
    width: 45px;
    min-width: 45px;
    max-width: 45px;
    height: 36px;
    vertical-align: middle;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    line-height: 36px;
    padding: 0;
}

/* グリッドコーナー */
.grid-header-corner {
    background: #e8e8e8;
    width: 35px;
}

.grid-seat {
    cursor: default;
    font-weight: 600;
    vertical-align: middle;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 36px;
    height: 36px;
    min-width: 36px;
    max-width: 36px;
    line-height: 36px;
    padding: 0;
}

.grid-seat-available {
    background: #667eea;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.grid-seat-available:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.grid-seat-available.selected {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.grid-seat-reserved {
    background: #ffc107;
    color: #333;
    cursor: not-allowed;
}

.grid-seat-sold {
    background: #dc3545;
    color: white;
    cursor: not-allowed;
}

.grid-seat-unavailable {
    background: #e9ecef;
    color: #999;
    cursor: not-allowed;
}

.grid-empty {
    background: white;
    cursor: default;
    width: 36px;
    height: 36px;
    min-width: 36px;
    max-width: 36px;
}

.row-label {
    background: #f5f5f5;
    font-weight: 600;
    width: 40px;
}

.selected-seats-panel {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.selected-seats-panel h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.selected-seats-panel select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
}

.selected-seats-panel > button,
.selected-seats-panel > form > button {
    width: 100%;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .customer-grid-container {
        grid-template-columns: 1fr;
    }

    .selected-seats-panel {
        position: sticky;
        top: 10px;
        z-index: 100;
    }
    
    /* タブレット以下でズームコントローラーを表示 */
    .grid-zoom-controls {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    /* スマートフォンでズームコントローラーを表示 */
    .grid-zoom-controls {
        display: flex !important;
        gap: 6px;
        padding: 10px;
        margin-bottom: 12px;
    }

    .btn-zoom {
        min-width: 36px;
        height: 36px;
        padding: 6px 8px;
        font-size: 14px;
    }

    .zoom-level-display {
        min-width: 50px;
        font-size: 12px;
    }
    
    .seat-grid-table td,
    .seat-grid-table th {
        width: 28px;
        height: 28px;
        min-width: 28px;
        max-width: 28px;
        line-height: 28px;
        font-size: 10px;
    }

    .grid-row-label {
        width: 40px;
        min-width: 40px;
        max-width: 40px;
        height: 28px;
        line-height: 28px;
    }

    .grid-seat {
        width: 28px;
        height: 28px;
        min-width: 28px;
        max-width: 28px;
        line-height: 28px;
    }

    .grid-empty {
        width: 28px;
        height: 28px;
        min-width: 28px;
        max-width: 28px;
    }

    .grid-wrapper {
        padding: 10px;
        overflow-x: auto;
    }
}

/* スマートフォン・タッチデバイス対応 */
@media (hover: none) and (pointer: coarse) {
    /* タッチデバイス用スタイル */
    
    /* グリッド座席は共通スタイルを使用 */
    .seat-grid-table td.grid-seat {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        touch-action: manipulation;
        -webkit-touch-callout: none;
        padding: 0;
    }
    
    /* ドラッグ選択を完全に禁止 */
    .seat-grid-table {
        -webkit-user-drag: none;
        user-drag: none;
    }
    
    /* ホバースタイルを無効化（タッチでは必要ない） */
    .seat-grid-table td.grid-seat:hover {
        background: inherit;
    }
    
    /* タッチ時のタップハイライトを調整 */
    .seat-grid-table td.grid-seat-available {
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3);
    }
    
    /* 選択状態を視認性向上 */
    .seat-grid-table td.grid-seat.selected {
        box-shadow: inset 0 0 0 2px #fff, 0 0 0 3px #667eea;
        animation: pulse 0.3s ease-out;
    }
    
    /* ボタンのタッチ領域を広げる */
    .btn {
        min-height: 48px;
        min-width: 48px;
        padding: 12px 20px;
        font-size: 16px;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* 選択座席パネルを改善 */
    .selected-seats-panel {
        position: relative;
        top: auto;
        margin-top: 20px;
        padding: 15px;
        background: white;
        border: 2px solid #667eea;
        border-radius: 8px;
    }
    
    /* リスト表示を改善 */
    .selected-seats-panel select {
        font-size: 16px;
        padding: 12px;
        min-height: 48px;
    }
}

/* 小型スマートフォン用 */
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    .seat-grid-table td,
    .seat-grid-table th {
        width: 22px;
        height: 22px;
        font-size: 9px;
        padding: 2px;
    }
    
    .grid-row-label {
        width: 28px;
        min-width: 28px;
        font-size: 10px;
    }
    
    .grid-header-corner {
        width: 28px;
    }
    
    .grid-wrapper {
        padding: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .seat-legend {
        font-size: 12px;
    }
    
    .seat-legend .legend-item {
        margin-right: 10px;
    }
    
    .selected-seats-panel {
        padding: 12px;
    }
    
    .btn {
        min-height: 44px;
        font-size: 15px;
    }
}

/* アニメーション */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===================================
   管理画面グリッド表示
   =================================== */
.seat-grid-admin {
    overflow-x: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===================================
   ステージ表示
   =================================== */
.seat-grid-table .stage-row {
    background: #333;
    height: 50px;
}

.seat-grid-table .stage-cell {
    background: #333;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    border: 1px solid #000;
}

@media (max-width: 768px) {
    .seat-grid-table .stage-row {
        height: 40px;
    }

    .seat-grid-table .stage-cell {
        font-size: 14px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .seat-grid-table .stage-row {
        height: 30px;
    }

    .seat-grid-table .stage-cell {
        font-size: 12px;
        padding: 6px;
    }
}

/* ===================================
   印刷用スタイル
   =================================== */
@media print {
    .site-header,
    .site-footer,
    .action-buttons,
    .notes {
        display: none;
    }

    .order-detail {
        box-shadow: none;
    }
}
