/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Header Styling */
header .logo img {
    width: 100px;
}

header .nav-link {
    color: white !important;
}

/* Heading Style */
h2 {
    color: #343a40;
    margin-bottom: 30px;
}

/* Table Styling */
table {
    width: 100%;
}

table th, table td {
    padding: 15px;
    text-align: left;
    vertical-align: middle;
}

table th {
    background-color: #f1f1f1;
}

/* Delivery Status Styling */
.delivery-status {
    font-weight: bold;
    text-transform: capitalize;
}

.delivery-status.pending {
    background-color: yellow;
    color: black;
}

.delivery-status.shipped {
    background-color: green;
    color: white;
}

.delivery-status.delivered {
    background-color: blue;
    color: white;
}

.delivery-status.failed {
    background-color: red;
    color: white;
}

/* Error Message Styling */
.error-message {
    color: red;
    font-weight: bold;
    text-align: center;
}

/* Button Styling */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Remarks Section Styling */
.remarks-section {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.remarks-section h3 {
    color: #343a40;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.remarks-section p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
    padding-left: 10px;
}

/* Ensure remarks section is always visible and styled distinctly */
.remarks-section p::before {
    content: "• ";
    color: #007bff;
    font-weight: bold;
    padding-right: 8px;
}
