body {
    font-family: Arial, sans-serif;
}

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

.ot-search-form {
    display: flex;
    margin-bottom: 20px;
    height: 40px;
}

.ot-search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 7px 0 0 7px;
    height: 3em !important;
}

.ot-search-form button {
    border: none;
    background: #007bff;
    color: white;
    border-radius: 0 7px 7px 0;
    cursor: pointer;
    height: 3em;
}

.ot-order-info, .ot-order-status {
    margin-top: 20px;
}

.ot-order-info p, .ot-order-status p {
    margin: 10px 0;
}

.ot-status-item {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 5px;
}

.ot-status-item:hover {
    background-color: #f0f0f0;
}

.ot-progress-tracker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    position: relative;
}

.ot-progress-tracker .ot-line {
    flex: 1;
    height: 6px;
    background-color: white;
    border: 0.1px solid #ccc;
    margin-left: -10px;
    margin-right: -10px;
}

.ot-progress-tracker .ot-line.active {
    background-color: #007bff;
    border: none;
}

.ot-progress-tracker .ot-line.failure {
    background-color: red;
    border: none;
}

.ot-tracker {
   width: 35px;
    height: 35px;
    border-radius: 20%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    position: relative;
    z-index: 2;
    font-size: 14px;
}

.ot-tracker.active {
    border-color: #007bff;
    background-color: #007bff;
    color: white;
}

.ot-tracker.failure {
    border-color: red;
    background-color: red;
    color: white;
}

.ot-package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.ot-package-history {
    list-style: none;
    padding-left: 0;
    max-height: 600px;
    overflow-y: auto;
    margin-top: 10px;
    position: relative;
    border-top: 1px solid #ccc;
}

.ot-package-history li {
    display: flex;
    align-items: center;
    margin-top: 10px;
    position: relative;
    padding-left: 20px;
}

.ot-package-history li::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #007bff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 14px;
    transform: translate(-50%, -50%);
}

.ot-package-history li.failure::before {
    background-color: red;
}

.ot-package-history li::after {
    z-index: 1;
    content: "";
    width: 1.5px;
    height: 102%;
    display: block;
    background: #007bff;
    position: absolute;
    left: -1px;
    top: 18px;
}

.ot-package-history li.failure::after {
    background-color: red;
}

.ot-hidden {
    display: none;
}

@media (max-width: 600px) {
    .ot-container {
        width: 100%;
        padding: 10px;
    }

    .ot-search-form {
        flex-direction: column;
        height: auto;
    }

    .ot-search-form input,
    .ot-search-form button {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 10px;
        height: 45px;
    }
	
	.ot-search-form input {
		padding: 8px !important;
		border-radius: 10px;
	}

    .ot-package-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ot-package-header button {
        display: none;
    }

    .ot-status-item {
        cursor: pointer;
    }
}
