body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

h2 {
    font-weight: bold;
}

.container {
    max-width: 960px;
    margin: auto;
}

.tracking-header {
    background: #a3d89f;
    color: #fff;
    border-radius: 6px;
    text-align: center;
}

.tracking-header h4 {
    margin-bottom: 15px;
}

.tracking-header .row > div {
    color: #333;
    font-weight: 500;
}

.tracking-body {
    background: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.tracking-steps {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.tracking-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #8dd68d;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    width: 20%;
}

.step .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.step.completed .icon {
    background: #8dd68d;
    color: #fff;
}

.step.pending .icon {
    background: #f0a3a3;
    color: #fff;
}

.label {
    font-size: 14px;
    margin-top: 5px;
}

.logo {
  max-width: 90px; /* Adjust max width as needed */
  height: auto;     /* Maintain aspect ratio */
}
