.wst-progress-container {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
}

.wst-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 800px;
    position: relative;
    padding: 20px 0;
}

.wst-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.wst-step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    border: 3px solid #ddd;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.wst-step-line {
    height: 3px;
    background-color: #ddd;
    position: absolute;
    top: 15px;
    left: 50%;
    right: -50%;
    z-index: 0;
    transition: all 0.3s ease;
}

.wst-step-label {
    font-size: 12px;
    text-align: center;
    max-width: 100px;
    word-break: break-word;
}

.wst-step.active .wst-step-circle,
.wst-step.completed .wst-step-circle {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.wst-step-line.completed {
    background-color: #4CAF50;
}

.wst-tracking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

/* Admin styles */
.wst-admin-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.wst-admin-form {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wst-shipments-list {
    flex: 2;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.wst-tracking-button {
    background: #2271b1;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.wst-tracking-button:hover {
    background: #135e96;
}