.paramsit_simple_shipment_tracking_wrapper{
    max-width:1000px;
    margin:50px auto;
    padding:20px;
    font-family:Arial, Helvetica, sans-serif;
}

/* HEADER */
.paramsit_simple_shipment_tracking_header{
    text-align:center;
    margin-bottom:35px;
}

.paramsit_simple_shipment_tracking_wrapper .paramsit_simple_shipment_tracking_header h2{
    font-size:32px;
    margin-bottom:10px;
    color:#111827;
}

.paramsit_simple_shipment_tracking_header p{
    color:#6b7280;
    font-size:16px;
}

/* SEARCH FORM */
.paramsit_simple_shipment_tracking_form {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
}

form.paramsit_simple_shipment_tracking_form input.paramsit_simple_shipment_tracking_input {
    flex: 1;
    height: 55px;
    padding: 0 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    font-size: 16px;
    color: #333;
    outline: none;
    box-sizing: border-box;
	margin-bottom: 0;
}

form.paramsit_simple_shipment_tracking_form input.paramsit_simple_shipment_tracking_input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.paramsit_simple_shipment_tracking_button {
    height: 55px;
    min-width: 120px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}

.paramsit_simple_shipment_tracking_button:hover {
    background: #1d4ed8;
}

/* STATUS */
.paramsit_simple_shipment_tracking_status_box{
    background:#fff;
    padding:30px;
    border-radius:16px;
    margin-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.paramsit_simple_shipment_tracking_status_box h3{
    margin-bottom:35px;
    color:#111827;
}

/* CARDS */
.paramsit_simple_shipment_tracking_card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    margin-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.paramsit_simple_shipment_tracking_card h3{
    margin-top:0;
    margin-bottom:25px;
    color:#111827;
    font-size:18px;
    border-bottom:1px solid #eee;
    padding-bottom:15px;
}

/* TWO COLUMN */
.paramsit_simple_shipment_tracking_two_column{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* DETAILS */
.paramsit_simple_shipment_tracking_detail{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:12px 0;
    border-bottom:1px dashed #e5e7eb;
}

.paramsit_simple_shipment_tracking_label{
	font-size: 15px;
    font-weight:600;
}

.paramsit_simple_shipment_tracking_value{
	font-size: 15px;
    color:#111827;
    text-align:right;
}

/* MAP */
.paramsit_simple_shipment_tracking_map{
    margin-top:25px;
    overflow:hidden;
    border-radius:12px;
}

.paramsit_simple_shipment_tracking_map iframe{
    width:100%;
    min-height:350px;
}

/* ERROR */
.paramsit_simple_shipment_tracking_error{
    background:#fee2e2;
    color:#b91c1c;
    padding:20px;
    text-align:center;
    border-radius:10px;
    font-weight:bold;
}

/* Shipment Progress */
.paramsit_simple_shipment_tracking_progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px 20px 25px;
}

/* Background Line */
.paramsit_simple_shipment_tracking_progress::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 10px;
    z-index: 0;
}

/* Each Step */
.paramsit_simple_shipment_tracking_step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    color: #9ca3af;
    font-size: 15px;
    font-weight: 500;
}

/* Circle */
.paramsit_simple_shipment_tracking_circle {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #d1d5db;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:600;
    color:#9ca3af;
    transition:.3s;
}

/* Active Step */
.paramsit_simple_shipment_tracking_step.active {
    color:#31eb25;
}

.paramsit_simple_shipment_tracking_step.active 
.paramsit_simple_shipment_tracking_circle {
    background:#31eb25;
    border-color:#31eb25;
    color:#ffffff;
    box-shadow:0 5px 15px rgba(37,99,235,.35);
}

/* Completed line */
.paramsit_simple_shipment_tracking_progress:has(
.paramsit_simple_shipment_tracking_step:nth-child(2).active
)::before {
    background:linear-gradient(
        to right,
        #31eb25 50%,
        #e5e7eb 50%
    );
}

.paramsit_simple_shipment_tracking_progress:has(
.paramsit_simple_shipment_tracking_step:nth-child(3).active
)::before {
    background:#31eb25;
}

/* Mobile */
@media(max-width:600px){
.paramsit_simple_shipment_tracking_progress {
    margin-left:0;
    margin-right:0;
}

.paramsit_simple_shipment_tracking_step {
    font-size:13px;
}

.paramsit_simple_shipment_tracking_circle {
    width:40px;
    height:40px;
}
}

/* MOBILE */
@media(max-width:768px){
    .paramsit_simple_shipment_tracking_form{
        flex-direction:column;
    }

	.paramsit_simple_shipment_tracking_input,
    .paramsit_simple_shipment_tracking_button{
        width:100%;
    }

    .paramsit_simple_shipment_tracking_button{
        height:55px;
    }

    .paramsit_simple_shipment_tracking_two_column{
        grid-template-columns:1fr;
    }

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

    .paramsit_simple_shipment_tracking_value{
        text-align:left;
    }
}