.elementor-15210 .elementor-element.elementor-element-c57a5dc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-da0366e *//* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.tracking-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

.description {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Form Styles */
.tracking-form {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #3498db;
    outline: none;
}

.track-btn {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.track-btn:hover {
    background-color: #2980b9;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    margin: 30px 0;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tracking Results */
.tracking-results {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.order-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.order-info {
    flex: 1;
    min-width: 250px;
}

.info-row {
    display: flex;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.info-label {
    font-weight: 600;
    color: #7f8c8d;
    min-width: 120px;
}

.info-value {
    color: #2c3e50;
}

.status-container {
    flex: 1;
    min-width: 250px;
}

.status-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.status-label {
    font-weight: 600;
    margin-right: 10px;
    color: #7f8c8d;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
}

.status-timeline {
    position: relative;
    height: 60px;
    margin-top: 20px;
}

.timeline-progress {
    position: absolute;
    top: 20px;
    left: 0;
    height: 4px;
    background-color: #ecf0f1;
    width: 100%;
    z-index: 1;
}

.timeline-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ecf0f1;
    color: #95a5a6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 5px;
    position: relative;
}

.step-label {
    font-size: 12px;
    color: #95a5a6;
    text-align: center;
    max-width: 80px;
}

.step-active .step-icon {
    background-color: #3498db;
    color: white;
}

.step-active .step-label {
    color: #3498db;
    font-weight: 600;
}

.step-completed .step-icon {
    background-color: #2ecc71;
    color: white;
}

.step-completed .step-label {
    color: #2ecc71;
    font-weight: 600;
}

/* Order Items */
.order-items {
    margin-top: 30px;
}

.items-list {
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}

.item-row {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

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

.item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 4px;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.item-meta {
    font-size: 14px;
    color: #7f8c8d;
}

.item-price {
    min-width: 80px;
    text-align: right;
    font-weight: 600;
}

/* Order Actions */
.order-actions {
    text-align: center;
    margin: 25px 0;
}

.action-btn {
    padding: 12px 25px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.action-btn:hover {
    background-color: #27ae60;
}

/* Error Message */
.error-message {
    padding: 15px;
    background-color: #fdecea;
    color: #d32f2f;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .tracking-container {
        margin: 20px;
        padding: 20px;
    }
    
    .order-summary {
        flex-direction: column;
    }
}/* End custom CSS */