.timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

footer {
    background: #111;
    color: white;
    padding: 25px;
    text-align: center;

}

.step {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: bold;
}

.step p {
    font-size: 12px;
    margin-top: 6px;
}

.line {
    flex: 1;
    height: 6px;
    background: #ddd;
}

.active {
    background: #0d6efd;
    color: white;
}

.completed {
    background: #198754;
    color: white;
}

.link-for-links {
    text-decoration: none;
    color: white;
}

.link-for-links:hover {
    font-weight: bold;
    color: gold;
}

/* .logo {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.logo i {
    color: #ffb400;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #003366;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}


nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

nav a:hover {
    color: #ffb400;
} */











/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {
    display: flex;
    background: #eef2f8;
}

.sidebar {

    width: 240px;

    height: 100vh;

    background: #003366;

    color: white;

    padding: 30px;

    position: fixed;

}

.sidebar h2 {

    margin-bottom: 40px;

}

.sidebar a {

    display: block;

    color: white;

    text-decoration: none;

    padding: 15px 0;

    transition: .3s;

}

.sidebar a:hover {

    padding-left: 15px;

    color: gold;

}

.main {

    margin-left: 260px;

    padding: 40px;

    width: 100%;

}

.stats {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin: 30px 0;

}

.box {

    background: white;

    padding: 25px;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);

    text-align: center;

}

.box h2 {

    font-size: 40px;

    color: #003366;

}

#search {

    width: 100%;

    padding: 15px;

    border-radius: 10px;

    border: none;

    margin-bottom: 30px;

    font-size: 18px;

}

.card {

    background: white;

    padding: 25px;

    margin-bottom: 20px;

    border-radius: 15px;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);

}

button {

    padding: 10px 18px;

    border: none;

    border-radius: 8px;

    margin-top: 15px;

    cursor: pointer;

    margin-right: 10px;

}

button:first-of-type {

    background: #0057b7;

    color: white;

}

button:last-of-type {

    background: #ff4d4d;

    color: white;

}

.create-btn {
    background: #ff7b00;
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 17px;
    margin-bottom: 20px;
}

.shipment-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.shipment-form input,
.shipment-form select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
}

#saveShipment {
    width: 100%;
    padding: 14px;
    background: #0057ff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table th {
    background: #0c1b4d;
    color: white;
    padding: 15px;
}

table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
} */