/* Custom CSS untuk Halodoc Automation Dashboard */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-item.active .nav-link {
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 0;
    height: calc(100vh - 56px);
    overflow-y: auto;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar .nav-link {
    color: #333;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin: 0.25rem 0.5rem;
    transition: all 0.3s;
}

.sidebar .nav-link:hover {
    background-color: #e9ecef;
    color: #007bff;
}

.sidebar .nav-link i {
    margin-right: 0.5rem;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

/* Cards */
.card {
    border: none;
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

.card.shadow {
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid #e3e6f0;
}

/* Border left variations */
.border-left-primary {
    border-left: 0.25rem solid #4e73df !important;
}

.border-left-success {
    border-left: 0.25rem solid #1cc88a !important;
}

.border-left-info {
    border-left: 0.25rem solid #36b9cc !important;
}

.border-left-warning {
    border-left: 0.25rem solid #f6c23e !important;
}

.border-left-danger {
    border-left: 0.25rem solid #e74a3b !important;
}

/* Statistics Cards */
.text-xs {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
}

/* Activity Log Styles */
.activity-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e3e6f0;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    font-size: 1.25rem;
}

.activity-title {
    font-weight: 600;
    color: #333;
}

.activity-detail {
    font-size: 0.875rem;
}

.activity-time {
    font-size: 0.75rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e3e6f0;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -32px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px #f8f9fc;
}

.timeline-marker i {
    font-size: 1rem;
}

.timeline-content {
    background: #fff;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.timeline-header {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

/* Table Styles */
.table {
    font-size: 0.875rem;
}

.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05rem;
    border-bottom: 2px solid #e3e6f0;
}

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

/* Badges */
.badge {
    padding: 0.35rem 0.5rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    font-weight: 600;
    transition: all 0.3s;
}

.btn-sm {
    font-size: 0.75rem;
}

.btn i {
    margin-right: 0.25rem;
}

.btn-group-sm .btn i {
    margin-right: 0;
}

/* Order Cards */
.order-items ul {
    padding-left: 0;
}

.order-items li {
    padding: 0.25rem 0;
}

/* Footer */
.footer {
    margin-top: auto;
    background-color: #f8f9fc;
    border-top: 1px solid #e3e6f0;
}

/* Alert Styles */
.alert-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

/* Loading Spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-overlay.active {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline::before {
        left: 5px;
    }

    .timeline-marker {
        left: -22px;
        width: 20px;
        height: 20px;
    }

    .timeline-marker i {
        font-size: 0.75rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .timeline-item {
    animation: fadeIn 0.3s ease-in;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Utility Classes */
.text-gray-800 {
    color: #5a5c69 !important;
}

.text-gray-300 {
    color: #dddfeb !important;
}

.bg-gray-100 {
    background-color: #f8f9fc !important;
}

/* Order Detail Modal */
.info-box {
    padding: 0.5rem;
}

.info-box label {
    font-size: 0.875rem;
    font-weight: 600;
}

.info-box p, .info-box h5 {
    margin-bottom: 0;
}

/* DataTables Custom Styling */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 1rem;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
    padding: 0.375rem 0.75rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.25rem 0.5rem;
    margin: 0 0.125rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #4e73df !important;
    border-color: #4e73df !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #2e59d9 !important;
    border-color: #2e59d9 !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_info {
    padding-top: 0.85rem;
    font-size: 0.875rem;
}

/* Responsive DataTables */
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    background-color: #4e73df;
}

/* Table action buttons spacing */
.btn-group-sm .btn {
    margin: 0 1px;
}

/* Orders Page - Expandable Rows */
.order-item {
    transition: background-color 0.2s;
}

.order-item:hover {
    background-color: #f8f9fc;
}

.order-summary {
    padding: 10px 0;
}

.expand-icon {
    transition: transform 0.3s;
    color: #666;
}

.order-details {
    background-color: #f8f9fc;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.info-section {
    background: white;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e3e6f0;
}

.info-section h6 {
    color: #4e73df;
    border-bottom: 2px solid #4e73df;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.info-section table {
    margin-bottom: 0;
}

.info-section table td {
    padding: 5px;
    vertical-align: top;
}

/* Pills/Tabs for Orders */
.nav-pills .nav-link {
    color: #6c757d;
    border: 1px solid #dee2e6;
    margin-right: 5px;
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-pills .nav-link.active {
    background-color: #f8f9fc;
    color: #495057;
    border-color: #dee2e6;
}

.nav-pills .nav-link .badge {
    font-size: 0.875rem;
}

/* Badge Styles */
.badge-sm {
    font-size: 0.7rem;
    padding: 2px 6px;
}

/* Loading States */
.gender-loading,
.update-time-loading,
.provider-loading,
.tracking-loading,
.shipping-status-loading,
.item-badges-loading {
    color: #999;
    font-style: italic;
}

/* Track Shipment Button */
.track-shipment-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .order-summary .row {
        flex-direction: column;
    }

    .order-details {
        margin-left: 0 !important;
    }

    .info-section {
        margin-bottom: 15px;
    }
}

/* ========================================
   PROFESSIONAL ORDERS PAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
    border-bottom: 2px solid #e3e6f0;
    padding-bottom: 1rem;
}

.page-header h3 {
    color: #2c3e50;
}

.btn-refresh {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.btn-refresh:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Stats Cards */
.stats-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    transition: all 0.3s;
    height: 100%;
}

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

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.stats-icon.bg-primary {
    background: #007bff;
}

.stats-icon.bg-success {
    background: #28a745;
}

.stats-icon.bg-info {
    background: #17a2b8;
}

.stats-icon.bg-warning {
    background: #ffc107;
}

.stats-info h6 {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-info h3 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* Modern Card */
.modern-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    border: none;
}

.card-header-modern {
    background: #007bff;
    color: white;
    padding: 1.25rem 1.5rem;
    border-bottom: none;
}

.card-header-modern h5 {
    margin: 0;
    font-weight: 600;
    color: white;
}

.card-header-modern i {
    margin-right: 0.5rem;
}

/* Filter Pills */
.filter-pills-container {
    padding: 1.25rem 1.5rem;
    background: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-pill {
    background: white;
    border: 2px solid #e3e6f0;
    color: #6c757d;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.filter-pill:hover {
    background: #f8f9fc;
    border-color: #007bff;
    color: #007bff;
}

.filter-pill.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.filter-pill .badge {
    margin-left: 0.5rem;
    background: rgba(0,0,0,0.15);
    color: inherit;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.filter-pill.active .badge {
    background: rgba(255,255,255,0.3);
}

/* Orders Container */
.orders-container {
    padding: 0;
}

/* Professional Order Item */
.order-item-pro {
    border-bottom: 1px solid #e3e6f0;
    transition: background-color 0.2s;
}

.order-item-pro:hover {
    background-color: #f8f9fc;
}

.order-item-pro:last-child {
    border-bottom: none;
}

.order-summary-pro {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
}

.order-header-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 150px 140px 50px;
    gap: 1rem;
    align-items: center;
}

.order-id-col {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.expand-arrow {
    color: #6c757d;
    transition: transform 0.3s;
    font-size: 0.875rem;
}

.order-summary-pro.expanded .expand-arrow {
    transform: rotate(90deg);
}

.order-id-badge {
    font-weight: 700;
    color: #007bff;
    font-size: 1rem;
}

.order-timestamp {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.order-timestamp i {
    margin-right: 0.25rem;
}

.order-customer-col .customer-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.order-customer-col .customer-phone {
    font-size: 0.85rem;
    color: #6c757d;
}

.order-address-col {
    font-size: 0.875rem;
    color: #495057;
}

.order-address-col i {
    color: #6c757d;
}

.order-total-col {
    text-align: right;
}

.order-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.25rem;
}

.order-items-count {
    font-size: 0.8rem;
    color: #6c757d;
}

.order-status-col {
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-new {
    background: #dc3545;
    color: white;
}

.status-ready {
    background: #28a745;
    color: white;
}

.status-completed {
    background: #17a2b8;
    color: white;
}

.status-pending {
    background: #ffc107;
    color: #212529;
}

.order-actions-col {
    text-align: center;
}

.btn-icon {
    background: white;
    border: 2px solid #e3e6f0;
    color: #007bff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-icon:hover {
    background: #007bff;
    border-color: #007bff;
    color: white;
    transform: scale(1.1);
}

/* Order Details Expanded */
.order-details-pro {
    padding: 0;
    background: #f8f9fc;
    border-top: 1px solid #e3e6f0;
}

.details-content {
    padding: 1.5rem;
}

.detail-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    overflow: hidden;
}

.detail-card-header {
    background: #007bff;
    color: white;
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.detail-card-header i {
    margin-right: 0.5rem;
}

.detail-card-body {
    padding: 1.25rem;
}

.detail-row {
    display: flex;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #6c757d;
    min-width: 120px;
    flex-shrink: 0;
}

.detail-value {
    color: #2c3e50;
    flex: 1;
}

/* Items Table */
.items-table {
    border-top: 1px solid #e3e6f0;
}

.item-row-pro {
    display: flex;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    gap: 1rem;
}

.item-row-pro:last-child {
    border-bottom: none;
}

.item-number {
    width: 30px;
    height: 30px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.item-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.item-qty, .item-price {
    display: inline-block;
}

.item-total {
    font-weight: 700;
    color: #28a745;
    font-size: 1rem;
    white-space: nowrap;
}

/* Detail Actions */
.detail-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e3e6f0;
}

.detail-actions .btn {
    flex: 1;
}

/* Pagination */
.pagination-container {
    padding: 1.25rem 1.5rem;
    background: white;
    border-top: 1px solid #e3e6f0;
}

.pagination-info {
    color: #6c757d;
    font-size: 0.875rem;
}

.pagination-info strong {
    color: #2c3e50;
}

.pagination {
    margin: 0;
}

.page-item {
    margin: 0 2px;
}

.page-link {
    border-radius: 6px;
    border: 1px solid #e3e6f0;
    color: #007bff;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
}

.page-link:hover {
    background: #f8f9fc;
    border-color: #007bff;
    color: #007bff;
}

.page-item.active .page-link {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.page-item.disabled .page-link {
    background: #f8f9fc;
    border-color: #e3e6f0;
    color: #c0c0c0;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loading-overlay.active {
    display: flex;
}

/* Loading placeholders for AJAX content */
.gender-loading-pro,
.update-time-loading-pro,
.provider-loading-pro,
.tracking-loading-pro,
.shipping-status-loading-pro,
.item-badges-loading-pro {
    color: #999;
    font-style: italic;
    font-size: 0.875rem;
}

.track-shipment-btn-pro:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .order-header-row {
        grid-template-columns: 180px 1fr 1fr 130px 120px 50px;
        gap: 0.75rem;
    }
}

@media (max-width: 992px) {
    .order-header-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .order-id-col,
    .order-customer-col,
    .order-address-col,
    .order-total-col,
    .order-status-col,
    .order-actions-col {
        width: 100%;
    }

    .order-total-col,
    .order-status-col,
    .order-actions-col {
        text-align: left;
    }

    .stats-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .filter-pills-container {
        padding: 1rem;
    }

    .filter-pill {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .order-summary-pro {
        padding: 1rem;
    }

    .details-content {
        padding: 1rem;
    }

    .stats-info h3 {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-details-pro {
    animation: slideDown 0.3s ease-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-new i {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ========================================
   INVENTORY PAGE STYLES
   ======================================== */

.products-container {
    padding: 0;
}

.product-item {
    border-bottom: 1px solid #e3e6f0;
    transition: background-color 0.2s;
}

.product-item:hover {
    background-color: #f8f9fc;
}

.product-item:last-child {
    border-bottom: none;
}

.product-row {
    display: grid;
    grid-template-columns: 80px 1fr 120px 200px 140px 100px;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
}

.product-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e3e6f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.product-sku i {
    margin-right: 0.25rem;
}

.product-stock {
    text-align: center;
}

.stock-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.stock-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.price-label {
    color: #6c757d;
    min-width: 90px;
}

.price-value {
    font-weight: 600;
    color: #2c3e50;
}

.product-status-col {
    text-align: center;
}

.badge-success-inv {
    background: #28a745;
    color: white;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-secondary-inv {
    background: #6c757d;
    color: white;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.product-actions {
    text-align: right;
}

.product-actions .btn {
    white-space: nowrap;
}

/* Responsive Product Grid */
@media (max-width: 1200px) {
    .product-row {
        grid-template-columns: 70px 1fr 100px 180px 120px 90px;
        gap: 0.75rem;
    }
}

@media (max-width: 992px) {
    .product-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-image {
        width: 100%;
        height: 150px;
    }

    .product-stock,
    .product-status-col,
    .product-actions {
        text-align: left;
    }

    .price-row {
        justify-content: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .product-row {
        padding: 1rem;
    }

    .product-image {
        height: 120px;
    }
}

/* Stats icon for danger */
.stats-icon.bg-danger {
    background: #dc3545;
}
