
/* Include the beautiful CSS from demo template */
.indianpost-tracking-container {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

/* Hide TOC elements within our container */
.indianpost-tracking-container .ez-toc-container,
.indianpost-tracking-container .toc,
.indianpost-tracking-container .table-of-contents,
.indianpost-tracking-container .lwptoc,
.indianpost-tracking-container .rank-math-toc,
.indianpost-tracking-container .yoast-toc,
.indianpost-tracking-container [class*="toc"],
.indianpost-tracking-container [id*="toc"] {
    display: none !important;
}

/* Hide TOC sections and anchors */
.indianpost-tracking-container .ez-toc-section,
.indianpost-tracking-container .ez-toc-section-end {
    display: none !important;
}

.indianpost-header {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 20px;
}

.indianpost-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.indianpost-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Search Section */
.indianpost-search-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Search Form */
.indianpost-search-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.indianpost-input-group {
    flex: 1;
    min-width: 250px;
}

.indianpost-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.indianpost-input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.indianpost-input-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Search Type Selection */
.indianpost-search-type {
    margin-bottom: 30px;
}

.indianpost-search-type h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.indianpost-radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.indianpost-radio-option {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.indianpost-radio-option:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.indianpost-radio-option.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #e7f3ff 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.indianpost-radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.indianpost-radio-option.active .radio-custom {
    border-color: #667eea;
    background: #667eea;
}

.indianpost-radio-option.active .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-content {
    flex: 1;
}

.radio-label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
}

.radio-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    display: block;
}

/* Search Fields */
.indianpost-search-fields {
    display: none;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.indianpost-search-fields.active {
    display: flex;
}

.indianpost-input-group {
    flex: 1;
    min-width: 250px;
}

.indianpost-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.indianpost-input-group input,
.indianpost-input-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.indianpost-input-group input:focus,
.indianpost-input-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.indianpost-input-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.indianpost-input-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Track Button */
.indianpost-track-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    align-self: end;
}

.indianpost-track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.indianpost-track-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Messages */
.indianpost-messages {
    margin-top: 20px;
}

.indianpost-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.indianpost-message.error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.indianpost-message.success {
    background: #efe;
    color: #3a3;
    border: 1px solid #cfc;
}

.indianpost-message.info {
    background: #e7f3ff;
    color: #0073aa;
    border: 1px solid #b3d9ff;
}

/* Order Details */
.indianpost-order-details {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.indianpost-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.indianpost-order-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.indianpost-status-badge {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.indianpost-status-badge.order-placed {
    background: #61a0a8;
    color: white;
}

.indianpost-status-badge.order-dispatched {
    background: #d4a574;
    color: white;
}

.indianpost-status-badge.in-transit {
    background: #82ca9d;
    color: white;
}

.indianpost-status-badge.out-for-delivery {
    background: #8884d8;
    color: white;
}

.indianpost-status-badge.delivered {
    background: #00a32a;
    color: white;
}

/* Progress Container */
.indianpost-progress-container {
    margin: 40px 0;
}

.indianpost-progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.indianpost-progress-line {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #e1e5e9;
    border-radius: 2px;
}

.indianpost-progress-line-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 1s ease;
}

.indianpost-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    background: white;
    padding: 0 10px;
}

.indianpost-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: bold;
    border: 3px solid #e1e5e9;
    background: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.indianpost-step.completed .indianpost-step-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.indianpost-step.active .indianpost-step-icon {
    border-color: #667eea;
    background: #f0f3ff;
    color: #667eea;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.indianpost-step-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #666;
}

.indianpost-step.completed .indianpost-step-label,
.indianpost-step.active .indianpost-step-label {
    color: #333;
}

/* Tracking Info */
.indianpost-tracking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.indianpost-info-card {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.indianpost-info-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
}

/* Collapsible Card Styles */
.indianpost-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.indianpost-card-header:hover {
    background: rgba(102, 126, 234, 0.05);
    margin: -10px;
    padding: 10px;
    border-radius: 10px;
}

.indianpost-card-header h3 {
    margin: 0;
    flex: 1;
}

.collapse-arrow {
    font-size: 1rem;
    color: #667eea;
    transition: transform 0.3s ease;
    user-select: none;
    margin-left: 10px;
}

.indianpost-card-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Desktop - Always expanded */
@media (min-width: 769px) {
    .indianpost-card-header {
        cursor: default;
        pointer-events: none;
    }

    .indianpost-card-header:hover {
        background: none;
        margin: 0;
        padding: 0;
    }

    .collapse-arrow {
        display: none;
    }
}

/* Additional styles for better interaction */
.indianpost-card-header.clicked {
    transform: scale(0.98);
}

.indianpost-card-header:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Smooth transitions for all states */
.collapsible-card {
    transition: all 0.3s ease;
}

.collapsible-card .indianpost-card-header {
    position: relative;
}

.collapsible-card .indianpost-card-header::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e1e5e9, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collapsible-card.collapsed .indianpost-card-header::after {
    opacity: 1;
}

.indianpost-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e1e5e9;
}

.indianpost-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.indianpost-info-label {
    font-weight: 600;
    color: #555;
}

.indianpost-info-value {
    color: #333;
    text-align: right;
}

/* Timeline */
.indianpost-timeline {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.indianpost-timeline h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.5rem;
}

.indianpost-timeline-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.indianpost-timeline-item:last-child {
    margin-bottom: 0;
}

.indianpost-timeline-item::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 35px;
    bottom: -25px;
    width: 2px;
    background: #e1e5e9;
}

.indianpost-timeline-item:last-child::before {
    display: none;
}

.indianpost-timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #667eea;
    margin-right: 20px;
    margin-top: 8px;
    flex-shrink: 0;
    z-index: 2;
}

.indianpost-timeline-content {
    flex: 1;
}

.indianpost-timeline-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.indianpost-timeline-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.indianpost-timeline-desc {
    color: #666;
    font-size: 0.9rem;
}

/* Multiple Orders Display */
.indianpost-multiple-orders {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.indianpost-multiple-orders h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.5rem;
    text-align: center;
}

.indianpost-order-card {
    background: #f8f9ff;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.indianpost-order-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.indianpost-order-card:last-child {
    margin-bottom: 0;
}

.indianpost-order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.indianpost-order-card-id {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.indianpost-order-card-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.indianpost-order-card-status.order-placed {
    background: #61a0a8;
    color: white;
}

.indianpost-order-card-status.order-dispatched {
    background: #d4a574;
    color: white;
}

.indianpost-order-card-status.in-transit {
    background: #82ca9d;
    color: white;
}

.indianpost-order-card-status.out-for-delivery {
    background: #8884d8;
    color: white;
}

.indianpost-order-card-status.delivered {
    background: #00a32a;
    color: white;
}

.indianpost-order-card-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.indianpost-order-card-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e1e5e9;
}

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

.indianpost-order-card-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.indianpost-order-card-value {
    color: #333;
    text-align: right;
    font-size: 0.9rem;
}

.indianpost-no-orders {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.indianpost-no-orders-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.indianpost-no-orders-text {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.indianpost-no-orders-subtext {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes slideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Container and Header */
    .indianpost-tracking-container {
        padding: 15px;
    }

    .indianpost-header {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .indianpost-header h1 {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .indianpost-header p {
        font-size: 1rem;
    }

    /* Search Section */
    .indianpost-search-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    /* Search Type Selection - More Compact */
    .indianpost-search-type {
        margin-bottom: 20px;
    }

    .indianpost-search-type h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .indianpost-radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .indianpost-radio-option {
        min-width: auto;
        padding: 15px;
        gap: 12px;
    }

    .radio-label {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    /* Hide or shorten radio button descriptions on mobile */
    .radio-description {
        font-size: 0.8rem;
        line-height: 1.3;
        display: none; /* Hide descriptions on mobile for cleaner look */
    }

    /* Alternative: Show shortened descriptions */
    .indianpost-radio-option[data-type="order-id"] .radio-description::after {
        content: "Search by Order ID";
        display: block;
        font-size: 0.8rem;
        color: #666;
    }

    .indianpost-radio-option[data-type="mobile"] .radio-description::after {
        content: "Search by Mobile Number";
        display: block;
        font-size: 0.8rem;
        color: #666;
    }

    /* Search Form - Single Column Layout */
    .indianpost-search-form {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .indianpost-search-fields {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .indianpost-input-group {
        min-width: auto;
        flex: none;
    }

    .indianpost-input-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .indianpost-input-group input,
    .indianpost-input-group select {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
    }

    /* Track Button - Full Width */
    .indianpost-track-btn {
        align-self: stretch;
        width: 100%;
        padding: 15px;
        font-size: 1rem;
        margin-top: 10px;
        min-height: 48px; /* Better touch target */
    }

    /* Messages */
    .indianpost-messages {
        margin-top: 15px;
    }

    .indianpost-message {
        padding: 12px 15px;
        font-size: 0.9rem;
        text-align: left;
    }

    /* Order Details */
    .indianpost-order-details {
        padding: 20px;
        margin-bottom: 20px;
    }

    .indianpost-order-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .indianpost-order-number {
        font-size: 1.3rem;
    }

    .indianpost-status-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    /* Progress Steps - Better Mobile Layout */
    .indianpost-progress-container {
        margin: 30px 0;
    }

    .indianpost-progress-steps {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .indianpost-step {
        flex: 1;
        min-width: 70px;
        max-width: 90px;
        padding: 0 5px;
    }

    .indianpost-step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .indianpost-step-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    /* Tracking Info */
    .indianpost-tracking-info {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .indianpost-info-card {
        padding: 20px;
    }

    .indianpost-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    /* Mobile Collapsible Cards */
    .collapsible-card .indianpost-card-header {
        cursor: pointer;
        pointer-events: auto;
        padding: 10px;
        margin: -10px -10px 10px -10px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .collapsible-card .indianpost-card-header:hover,
    .collapsible-card .indianpost-card-header:focus {
        background: rgba(102, 126, 234, 0.08);
        transform: translateY(-1px);
    }

    .collapsible-card .indianpost-card-header h3 {
        font-size: 1.1rem;
        margin: 0;
    }

    .collapse-arrow {
        display: inline-block;
        font-size: 0.9rem;
        color: #667eea;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    /* Collapsed state */
    .collapsible-card.collapsed .indianpost-card-content {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
    }

    .collapsible-card.collapsed .collapse-arrow {
        transform: rotate(-90deg);
    }

    /* Expanded state */
    .collapsible-card:not(.collapsed) .indianpost-card-content {
        max-height: 500px;
        opacity: 1;
        margin-top: 10px;
    }

    .collapsible-card:not(.collapsed) .collapse-arrow {
        transform: rotate(0deg);
    }

    /* Content animation */
    .indianpost-card-content {
        max-height: 500px;
        opacity: 1;
        transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
        overflow: hidden;
    }

    .indianpost-info-item {
        flex-direction: column;
        gap: 3px;
        padding: 6px 0;
    }

    .indianpost-info-label {
        font-size: 0.9rem;
    }

    .indianpost-info-value {
        text-align: left;
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
    }

    /* Timeline */
    .indianpost-timeline {
        padding: 20px;
        margin-bottom: 20px;
    }

    .indianpost-timeline h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .indianpost-timeline-item {
        margin-bottom: 20px;
    }

    .indianpost-timeline-dot {
        width: 10px;
        height: 10px;
        margin-right: 15px;
        margin-top: 6px;
    }

    .indianpost-timeline-content {
        flex: 1;
    }

    .indianpost-timeline-date {
        font-size: 0.8rem;
    }

    .indianpost-timeline-title {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }

    .indianpost-timeline-desc {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    /* Multiple Orders */
    .indianpost-multiple-orders {
        padding: 20px;
        margin-bottom: 20px;
    }

    .indianpost-multiple-orders h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .indianpost-order-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .indianpost-order-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }

    .indianpost-order-card-id {
        font-size: 1.1rem;
    }

    .indianpost-order-card-status {
        padding: 4px 12px;
        font-size: 0.75rem;
        align-self: flex-start;
    }

    .indianpost-order-card-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .indianpost-order-card-item {
        flex-direction: column;
        gap: 2px;
        padding: 6px 0;
    }

    .indianpost-order-card-label,
    .indianpost-order-card-value {
        font-size: 0.85rem;
    }

    .indianpost-order-card-value {
        text-align: left;
        font-weight: 600;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .indianpost-tracking-container {
        padding: 10px;
    }

    .indianpost-header {
        padding: 25px 15px;
    }

    .indianpost-header h1 {
        font-size: 1.8rem;
    }

    .indianpost-search-section,
    .indianpost-order-details,
    .indianpost-timeline,
    .indianpost-multiple-orders {
        padding: 15px;
    }

    .indianpost-radio-option {
        padding: 12px;
    }

    .indianpost-step {
        min-width: 60px;
        max-width: 75px;
    }

    .indianpost-step-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .indianpost-step-label {
        font-size: 0.7rem;
    }
}
