body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.alert {
    background-color: red;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.tracking-container {
    padding: 20px;
}

.tracking-number {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.number {
    font-weight: bold;
}

.remove-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
}

.copy-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.copy-btn, .add-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
}

.copy-btn:hover, .add-btn:hover {
    background-color: #0056b3;
}

.latest-update {
    background-color: #e7f4e4;
    padding: 10px;
    border-left: 5px solid #4caf50;
    margin-bottom: 20px;
}

.tracking-plus {
    color: #007bff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.tracking-details {
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
}

/* Pseudo-element to create the connecting line */
.tracking-details::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ccc;
}

.status {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #121d3b;
    border-radius: 50%;
    margin-right: 10px;
    z-index: 1;
}

.status-dot1{
  width: 10px;
  height:10px;
  background-color: green;
  border-radius: 50%;
  margin-right: 10px;
  z-index: 1;
}

.status h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.status .green {
  color: green;
}

.status-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}


@media screen and (max-width: 390px) {
    .container {
        padding: 10px;
    }

    .tracking-container {
        padding: 10px;
    }

    .tracking-number {
        flex-direction: column;
        align-items: flex-start;
    }

    .copy-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .copy-btn, .add-btn {
        width: 20%;
        padding: 10px;
        font-size: 12px;
    }

    .latest-update {
        padding: 10px;
    }

    .tracking-plus {
        margin-bottom: 10px;
    }

    .tracking-details {
        margin-left: 10px;
        padding-left: 15px;
    }
}

.tracking-help-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
}

.track-another-package {
    margin-bottom: 30px;
}

.track-another-package label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.tracking-input-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tracking-input-wrapper input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.search-button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.search-button svg {
    fill: #888;
}

.need-more-help h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.need-more-help p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.faqs-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.faqs-button:hover {
    background-color: #0056b3;
}

/* Media Query for iPhone 12 */
@media screen and (max-width: 390px) {
    .tracking-help-container {
        padding: 15px;
    }

    .track-another-package label {
        font-size: 14px;
    }

    .tracking-input-wrapper input {
        padding: 8px;
        font-size: 12px;
    }

    .need-more-help h2 {
        font-size: 16px;
    }

    .need-more-help p {
        font-size: 12px;
    }

    .faqs-button {
        padding: 8px 15px;
        font-size: 12px;
    }
}