/* Tracking Form */
.tracking-form-new .form-control {
    height: 50px;
    border-radius: 25px;
    padding: 20px;
}

.tracking-form-new .btn {
    height: 50px;
    font-weight: bold;
    border-radius: 15px;
}

.tracking-form-new .input-group {
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
    .tracking-form-new .input-group {
        flex-direction: column;
    }
    .tracking-form-new .form-control,
    .tracking-form-new .btn {
        border-radius: 25px !important; /* Use important to override default bootstrap */
    }
    .tracking-form-new .form-control {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .card-body .row .col-md-6 {
        margin-bottom: 20px;
    }

    .timeline:before {
        left: 20px;
    }

    .timeline > li .timeline-panel {
        width: calc(100% - 50px);
    }

    .timeline > li .timeline-badge {
        left: 0;
    }
}

/* Card Styles */
.card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.card-header {
    background-color: #a4d9f7;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 20px;
    font-weight: bold;
}

.card-body {
    padding: 20px;
}

/* Timeline for Shipping History */
.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 20px;
    margin-left: -1.5px;
}

.timeline > li {
    margin-bottom: 20px;
    position: relative;
}

.timeline > li:before, .timeline > li:after {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline > li .timeline-panel {
    width: calc(100% - 65px);
    float: right;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    padding: 15px;
    position: relative;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.timeline > li .timeline-badge {
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 0;
    margin-right: -10px;
    background-color: #999999;
    z-index: 100;
    border-radius: 50%;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
}

.timeline-body > p, .timeline-body > ul {
    margin-bottom: 0;
}

.timeline-body > p + p {
    margin-top: 5px;
}
