.adisyon-list-container {
    padding: 1rem;
    background: #f5f7fa;
}

.adisyon-card {
    position: relative;
    background: white;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden; overflow-x: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .adisyon-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.status-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    transition: width 0.3s ease;
}

.adisyon-card:hover .status-border {
    width: 8px;
}

.border-alindi {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

.border-hazirlaniyor {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}

.border-bitiyor {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}

.border-tamamlandi {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.card-main {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    padding-left: 2rem;
}

.card-img {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden; overflow-x: auto;
    background: #f3f4f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.adisyon-card:hover .card-img img {
    transform: scale(1.05);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.product-details {
    font-size: 12px;
    color: #0891b2;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-time {
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.btn-group-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .btn-group-custom .btn {
        font-size: 11px;
        font-weight: 600;
        padding: 0.5rem 0.875rem;
        border-radius: 8px;
        border: none;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
    }

        .btn-group-custom .btn:hover:not(:disabled) {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .btn-group-custom .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

.btn-warning {
    background: #f59e0b;
    color: white;
}

    .btn-warning:hover:not(:disabled) {
        background: #d97706;
    }

.btn-info {
    background: #0891b2;
    color: white;
}

    .btn-info:hover:not(:disabled) {
        background: #0e7490;
    }

.btn-light {
    background: #f3f4f6;
    color: #374151;
}

    .btn-light:hover:not(:disabled) {
        background: #e5e7eb;
    }

.btn-danger {
    background: #ef4444;
    color: white;
}

    .btn-danger:hover:not(:disabled) {
        background: #dc2626;
    }

.btn-secondary {
    background: #9ca3af;
    color: white;
}

.card-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-badge {
    font-size: 14px;
    font-weight: 700;
    color: #fef3c7;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-edit-quantity {
    background: transparent;
    border: 2px solid #f59e0b;
    color: #f59e0b;
    border-radius: 8px;
    padding: 0.375rem 0.625rem;
    transition: all 0.2s ease;
}

    .btn-edit-quantity:hover:not(:disabled) {
        background: #f59e0b;
        color: white;
        transform: scale(1.05);
    }

.total-price {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    text-align: center;
    min-width: 140px;
}

.total-label {
    font-size: 10px;
    font-weight: 700;
    color: #78350f;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.25rem;
}

.total-amount {
    font-size: 20px;
    font-weight: 900;
    color: #1f2937;
    display: block;
}

@media (max-width: 768px) {
    .card-main {
        flex-direction: column;
    }

    .card-right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .btn-group-custom {
        width: 100%;
    }

        .btn-group-custom .btn {
            flex: 1;
            justify-content: center;
        }
}
.menu-list-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden; overflow-x: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

    .menu-list-table tbody tr {
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

        .menu-list-table tbody tr:hover {
            background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
            transform: scale(1.01);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .menu-list-table tbody tr:last-child {
            border-bottom: none;
        }

    .menu-list-table td {
        padding: 1.25rem 1rem;
        vertical-align: middle;
    }

.info-cell {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 11px;
    font-weight: 700;
    color: #17a2b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
}

.info-value-small {
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
}

.status-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-active {
    background: #d1fae5;
    color: #065f46;
}

.status-inactive {
    background: #fee2e2;
    color: #991b1b;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.campaign-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.campaign-active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.campaign-inactive {
    background: #e5e7eb;
    color: #6b7280;
}

.menu-image-container {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden; overflow-x: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-list-table tbody tr:hover .menu-image-container {
    transform: scale(1.05);
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-btn {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

    .view-btn:hover {
        background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(23, 162, 184, 0.4);
    }

    .view-btn:active {
        transform: translateY(0);
    }

    .view-btn i {
        font-size: 18px;
    }

@media (max-width: 768px) {
    .menu-list-table td {
        padding: 0.75rem 0.5rem;
    }

    .info-label {
        font-size: 10px;
    }

    .info-value {
        font-size: 12px;
    }

    .menu-image-container {
        width: 80px;
        height: 80px;
    }

    .view-btn {
        padding: 0.5rem 0.875rem;
        font-size: 12px;
    }
}
.receipt-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden; overflow-x: auto;
    max-width: 100%;
}

.receipt-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1.5rem;
    text-align: center;
    color: white;
}

    .receipt-header h5 {
        margin: 0;
        font-weight: 700;
        font-size: 18px;
        letter-spacing: 1px;
    }

.receipt-body {
    padding: 1.5rem;
}

.receipt-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    .receipt-table thead {
        background: #f8f9fa;
    }

        .receipt-table thead th {
            padding: 0.875rem 0.75rem;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            color: #6c757d;
            letter-spacing: 0.5px;
            border-bottom: 2px solid #dee2e6;
        }

    .receipt-table tbody tr {
        border-bottom: 1px dashed #e9ecef;
        transition: background-color 0.2s ease;
    }

        .receipt-table tbody tr:hover {
            background-color: #f8f9fa;
        }

        .receipt-table tbody tr:last-child {
            border-bottom: none;
        }

    .receipt-table tbody td {
        padding: 1rem 0.75rem;
        font-size: 13px;
        color: #495057;
    }

.product-name {
    font-style: italic;
    font-weight: 600;
    color: #2c3e50;
}

.price-cell {
    font-weight: 500;
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

.quantity-badge {
    display: inline-block;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    min-width: 30px;
    text-align: center;
}

.discount-cell {
    color: #dc3545;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.total-cell {
    color: #28a745;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.empty-receipt {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-receipt-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .empty-receipt-icon i {
        font-size: 36px;
        color: #adb5bd;
    }

.empty-receipt-text {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.receipt-summary {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed #dee2e6;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
}

.summary-label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.summary-value {
    font-size: 15px;
    font-weight: 700;
    color: #212529;
    font-family: 'Courier New', monospace;
}

.summary-discount .summary-value {
    color: #dc3545;
}

.receipt-total {
    margin-top: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #c0db96 0%, #b8d189 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(192, 219, 150, 0.3);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 16px;
    font-weight: 700;
    color: #2c5f2d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-amount {
    font-size: 28px;
    font-weight: 900;
    color: #1e3a1f;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.receipt-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

    .receipt-footer p {
        margin: 0;
        font-size: 11px;
        color: #6c757d;
    }

@media (max-width: 768px) {
    .receipt-table tbody td,
    .receipt-table thead th {
        padding: 0.625rem 0.5rem;
        font-size: 11px;
    }

    .total-amount {
        font-size: 24px;
    }

    .total-label {
        font-size: 14px;
    }
}
.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.full-height-col {
    display: flex;
    flex-direction: column;
}

.scroll-area {
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px;
}
.equal-height-row {
    display: flex;
    flex-wrap: wrap;
    height: calc(100vh - 250px);
    min-height: 500px;
    gap: 0;
}

.full-height-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.left-list-area {
    flex: 1;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    margin-right: 5px;
}

.right-side-flex {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
}

.partial-container {
    flex: 1;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
}

    .left-list-area::-webkit-scrollbar, .partial-container::-webkit-scrollbar {
        width: 6px;
    }

    .left-list-area::-webkit-scrollbar-thumb, .partial-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }
.content {
    padding: 10px !important;
}

.card-body {
    padding: 15px !important;
}

.equal-height-row {
    display: flex;
    flex-wrap: wrap;
    height: calc(100vh - 160px);
}

.full-height-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.scroll-area {
    overflow-y: auto;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eef2f3;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 25px;
    transition: all 0.3s ease;
}
.bg-adisyon {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.icon-adisyon {
    color: #1976d2;
    background: #bbdefb;
}

.bg-siparis {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.icon-siparis {
    color: #f57c00;
    background: #ffe0b2;
}

.bg-self {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.icon-self {
    color: #7b1fa2;
    background: #e1bee7;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 32px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.empty-state h5 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.empty-state p {
    color: #5d6d7e;
    font-size: 13px;
    max-width: 280px;
}
.self-footer-summary {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    background: #1e272e !important;
    padding: 15px 25px !important;
    border-radius: 0 0 12px 12px !important;
    border-top: 3px solid #1cbfd0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    z-index: 1000 !important;
    flex-shrink: 0 !important;
    margin-top: auto !important; 
    width: 100% !important;
}
.pos-view {
    min-height: 100vh !important; 
    width: 100% !important;
    padding: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
    background-attachment: fixed !important;
    background-image: radial-gradient(#94a3b8 0.5px, transparent 0.5px) !important;
    background-size: 20px 20px !important;
    border-radius: 20px !important;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.03) !important;
    padding-bottom: 120px !important;
    position: relative !important;
}
.cafe-tag-card {
    display: flex;
    align-items: center;
    border-left: 4px solid #e67e22;
    border-radius: 8px;
    padding: 10px 15px;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.3s ease;
}

    .cafe-tag-card:hover {
        background: #252525;
        box-shadow: 0 6px 20px rgba(230, 126, 34, 0.15);
    }

.steam-icon-box {
    position: relative;
    font-size: 24px;
    color: #e67e22;
}

.steam-waves {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
}

    .steam-waves span {
        display: block;
        width: 2px;
        height: 10px;
        background: #e67e22;
        border-radius: 50%;
        opacity: 0;
        animation: steam 2s linear infinite;
        animation-delay: calc(var(--i) * 0.5s);
    }

.paper-input-zone {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.label-mini {
    font-size: 9px;
    color: #95a5a6;
    font-weight: 700;
    letter-spacing: 1px;
}

.cafe-input {
    background: transparent;
    border: none;
    color: #ecf0f1;
    font-size: 16px;
    font-weight: 600;
    padding: 2px 0;
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ink-line {
    height: 1px;
    background: rgba(230, 126, 34, 0.3);
    width: 100%;
    transition: all 0.3s ease;
}

.cafe-input:focus ~ .ink-line {
    background: #e67e22;
    height: 2px;
    box-shadow: 0 0 8px rgba(230, 126, 34, 0.5);
}

.cafe-update-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #316b6d;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .cafe-update-btn:hover {
        background: #bbd58f;
        transform: scale(1.05);
    }

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

.btn-text {
    display: inline-block;
}

@keyframes steam {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }

    50% {
        transform: translateY(-10px) scaleX(1.5);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-20px) scaleX(2);
        opacity: 0;
    }
}

@media (max-width: 500px) {
    .btn-text {
        display: none;
    }

    .cafe-update-btn {
        padding: 8px;
    }
}
.search-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(25, 191, 206, 0.2); 
    border-radius: 25px;
    padding: 5px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 5vw;  
    height: 46px;  
    overflow: hidden; overflow-x: auto;
    border: 1px solid #19bfce;
}
 
    .search-container:focus-within {
        max-width: 250px; width: 100%;  
        background: #fff;
    }

.search-input {
    width: 100%;
    border: none;
    background: none;
    outline: none;
    padding: 0;
    color: #1cb3c0;
    font-size: 14px;
    transition: all 0.4s;
    margin-left: 10px;
    opacity: 0;
}

.search-container:focus-within .search-input {
    opacity: 1;
}

.search-btn {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #19bfce;
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .search-btn:hover {
        background: #3f3731;
    }
     
    .search-btn i {
        font-size: 14px;
    }
.glass-card {
    background: linear-gradient(135deg, #3f3731 0%, #19bfce 100%);
    border-radius: 20px;
    padding: 25px;
    color: white;
    box-shadow: 0 15px 35px rgba(25, 191, 206, 0.3);
    position: relative;
    overflow: hidden; overflow-x: auto;
    min-height: 27vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.glass-profile {
    position: absolute;
    top: 25px;
    right: 25px;
    text-align: center;
}

    .glass-profile img {
        max-width: 130px; width: 100%;
        height: 130px;
        border: 4px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        object-fit: cover;
    }

.glass-content {
    padding-right: 160px;
}

.glass-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.glass-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .glass-item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

.active-info {
    border: 1px solid #1cbfd0;
    background: rgba(28, 191, 208, 0.15);
    color: #1cbfd0;
    font-weight: bold;
}

.refresh-btn {
    color: #fdb2b2;
    margin-left: 8px;
    font-size: 1.1rem;
    transition: transform 0.4s;
}

    .refresh-btn:hover {
        transform: rotate(180deg);
        color: white;
    }

.text-muted-glass {
    color: rgba(255,255,255,0.6) !important;
}
.card-header-primary.oval-header {
    border-radius: 50px !important;
    margin: 0 15px;
    padding: 5px 20px !important;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .14), 0 7px 10px -5px rgba(156, 39, 176, .4);
}

.oval-header .nav-link {
    border-radius: 30px !important;
    margin: 5px 0;
}

.card-header-primary {
    background: linear-gradient(60deg, #ab47bc, #8e24aa);
}
.pos-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 10px;
    margin-top: 15px;
    background: #f1f3f5;
    border-radius: 20px;
}

.ciks-btn {
    position: relative;
    height: 80px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden; overflow-x: auto;
    color: white !important;
    text-transform: uppercase;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 15px;
}

.ciks-content {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    width: 100%;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

    .icon-circle i {
        font-size: 1.6rem;
        opacity: 0.95;
    }

.text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ciks-main-text {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.8px;
}

.ciks-sub-text {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
    text-transform: none;
}

.btn-payment-glass {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.85) 0%, rgba(5, 150, 105, 0.95) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cancel-glass {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.85) 0%, rgba(225, 29, 72, 0.95) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ciks-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ciks-btn:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ciks-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.3), transparent );
    transition: 0.6s;
}

.ciks-btn:hover .ciks-shimmer {
    left: 100%;
    transition: 0.7s;
}

@media (max-width: 768px) {
    .pos-action-grid {
        grid-template-columns: 1fr;
    }

    .ciks-btn {
        height: 70px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
    }
}
.cari-bilgi {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.cari-aktif {
    background-color: #e3f2fd;
    color: #0d47a1 !important;
    font-weight: 800 !important; 
    border-left: 3px solid #1976d2;
    text-transform: uppercase; 
}
.cari-yok {
    background-color: #fff3e0 !important; 
    color: #ef6c00 !important; 
    font-weight: 600;
    font-style: italic;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #ffcc80;
    animation: cariUyariBlink 1.5s ease-in-out infinite;
}
@keyframes cariUyariBlink {
    0% {
        opacity: 1;
        box-shadow: 0 0 0px rgba(239, 108, 0, 0);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(239, 108, 0, 0.5);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 0px rgba(239, 108, 0, 0);
    }
}
.cari-bilgi i {
    font-size: 12px;
}
.cari-container {
    margin-top: 5px;
    display: flex;
    align-items: center;
}
.cari-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.siparis-bos {
    background: linear-gradient(135deg, #ff390b12 0%, #e90606 100%);
    color: white !important;
    border: none;
}

    .siparis-bos i {
        font-size: 16px;
        --fa-animation-duration: 2s; 
    }
.cari-uyari {
    background: #fff3e0;
    color: #e65100 !important;
    border: 2px solid #ffb74d;
    animation: alertPulse 1.5s infinite;
}
.cari-aktif {
    background: #e8f5e9;
    color: #2e7d32 !important;
    border: 1px solid #a5d6a7;
}
@keyframes alertPulse {
    0% {
        box-shadow: 0 0 0px 0px rgba(230, 81, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0px 10px rgba(230, 81, 0, 0);
    }

    100% {
        box-shadow: 0 0 0px 0px rgba(230, 81, 0, 0);
    }
}
.cari-status:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}
.order-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border-left: 6px solid;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-right: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
    .order-row-modern.status-received {
        box-shadow: 0 4px 10px rgba(255, 152, 0, 0.15);
    }

    .order-row-modern.status-cooking {
        box-shadow: 0 4px 10px rgba(33, 150, 243, 0.15);
    }

    .order-row-modern.status-almost-done {
        box-shadow: 0 4px 10px rgba(156, 39, 176, 0.15);
    }

    .order-row-modern.status-completed {
        box-shadow: 0 4px 10px rgba(76, 175, 80, 0.15);
    }
    .order-row-modern:hover {
        transform: scale(1.02);
        filter: saturate(1.3); 
    }
.order-qty {
    background: #ffffff;
    color: #2d3436;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 900;
    margin-right: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.order-name {
    font-size: 15px;
    font-weight: 750;
    color: #2d3436;
}

.order-price {
    font-size: 14px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
}
.m-btn {
    border-radius: 10px;
    letter-spacing: 1px;
}

.m-btn-danger {
    background: linear-gradient(135deg, #bd2130, #dc3545);
    color: #fff;
}

.order-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
}

.order-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 12px;
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

    .order-row-modern:hover {
        transform: translateX(5px);
    }

.order-main-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-qty {
    font-size: 11px;
    font-weight: 800;
    color: #636e72;
    text-transform: uppercase;
}

.order-name {
    font-size: 14px;
    font-weight: 700;
    color: #2d3436;
}

.order-right-side {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.status-badge-mini {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
}

.order-price {
    font-family: 'Monaco', monospace;
    font-weight: 700;
    font-size: 13px;
    color: #2d3436;
}

.order-date-box {
    display: inline-flex;
    flex-direction: column;
    background: rgba(44, 62, 80, 0.05);
    padding: 5px 12px;
    border-radius: 8px;
    border-left: 3px solid #34495e;
    transition: all 0.3s ease;
}

    .order-date-box:hover {
        background: rgba(44, 62, 80, 0.1);
        transform: translateX(3px);
    }

.order-date-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: #7f8c8d;
    font-weight: 800;
    margin-bottom: 2px;
}

.order-time-display {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #2c3e50;
    font-weight: 700;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: #27ae60;
    border-radius: 50%;
    display: inline-block;
    animation: blink-live 1.5s infinite;
}

@keyframes blink-live {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes ring {
    0%, 100% {
        transform: rotate(0);
    }

    10%, 30%, 50% {
        transform: rotate(20deg);
    }

    20%, 40%, 60% {
        transform: rotate(-20deg);
    }
}

@keyframes pulse-soft {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes flicker {
    0%, 100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.1) translateY(-3px);
    }
}

@keyframes rotate-wait {
    0% {
        transform: rotate(0);
    }

    80% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes success-jump {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.ani-ring {
    animation: ring 2s infinite;
    display: inline-block;
}

.ani-pulse {
    animation: pulse-soft 1.5s infinite;
    display: inline-block;
}

.ani-flicker {
    animation: flicker 0.6s infinite;
    display: inline-block;
}

.ani-rotate {
    animation: rotate-wait 2.5s infinite;
    display: inline-block;
}

.ani-jump {
    animation: success-jump 1s infinite;
    display: inline-block;
}
.soft-action-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px;
    background: #f8fafd; 
    border-radius: 50px; 
}

.soft-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    padding: 12px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: inset 0 -4px 6px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
}
    .soft-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 30px;
        padding: 2px;
        background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }
.s-cancel {
    background: linear-gradient(135deg, #ff8a80, #ff5252);
    box-shadow: 0 10px 20px -5px rgba(255, 82, 82, 0.3);
}

.s-detail {
    background: linear-gradient(135deg, #81d4fa, #03a9f4);
    box-shadow: 0 10px 20px -5px rgba(3, 169, 244, 0.3);
}

.s-open {
    background: linear-gradient(135deg, #b2ff59, #76ff03);
    color: #2d3436;
    box-shadow: 0 10px 20px -5px rgba(118, 255, 3, 0.3);
}
.soft-btn:hover:not(:disabled) {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.soft-btn:disabled {
    background: #dfe6e9;
    color: #b2bec3;
    box-shadow: none;
    cursor: not-allowed;
}

.soft-btn i {
    font-size: 16px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}
.order-preview-scroll-container {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    scroll-behavior: smooth; 
}
    .order-preview-scroll-container::-webkit-scrollbar {
        width: 6px; 
        transition: all 0.3s ease;
    }
    .order-preview-scroll-container::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.03);
        border-radius: 10px;
    }

    .order-preview-scroll-container::-webkit-scrollbar-thumb {
        background: rgba(44, 62, 80, 0.2); /* Soft koyu gri */
        border-radius: 10px;
        border: 1px solid transparent;
    }

    .order-preview-scroll-container:hover::-webkit-scrollbar-thumb {
        background: rgba(44, 62, 80, 0.5);
    }

.order-preview-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(44, 62, 80, 0.3) transparent;
}

/* ===== OTOMATİK EKLENEN RESPONSIVE KURALLAR ===== */
@media (max-width: 768px) {
    /* Tablo overflow */
    .table-responsive-sm { overflow-x: auto !important; }
    
    /* Kart ve panel başlıkları */
    .card .header h2,
    .card .header h3 {
        font-size: 1rem !important;
        line-height: 1.4;
    }
    
    /* Buton grupları */
    .btn-group,
    .nav-align-top {
        flex-wrap: wrap !important;
        gap: 0.25rem;
    }
    
    /* Sabit genişlik taşmalarını engelle */
    /* responsive */
    
    /* Input grup */
    .input-group {
        flex-wrap: wrap;
    }
    
    /* Modal tam ekran mobilde */
    .modal-dialog {
        margin: 0.5rem !important;
        max-width: calc(100vw - 1rem) !important;
    }
    
    /* Section padding */
    section.content {
        padding: 0.5rem !important;
    }
    
    /* Footer images */
    .footerimages-row img {
        width: 60px !important;
        height: 60px !important;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    /* Ekstra küçük ekranlar */
    .card {
        margin-bottom: 0.75rem;
    }
    
    /* responsive xs */
    
    /* Başlık font küçült */
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1.1rem; }
    
    /* Buton metni gizle, sadece ikon göster (isteğe bağlı) */
    .btn-action { padding: 0.35rem 0.5rem; }
}
