/* General container styling */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Form styling */
.update-location-section {
    margin-bottom: 30px;
}

.update-location-section input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ced4da;
}

.update-location-section label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.update-location-section .btn {
    margin-top: 15px;
}

/* Table styling */
.table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    text-align: left;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
    padding: 12px;
    text-align: left;
    vertical-align: middle;
}

.table-striped tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.table thead th {
    background-color: #f8f9fa;
    font-weight: bold;
    text-transform: uppercase;
}

/* Button styling */
.btn {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

/* Button hover effects */
.btn-primary:hover {
    background-color: #0056b3;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Heading styling */
h2, h3 {
    color: #343a40;
    margin-bottom: 20px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 22px;
    margin-top: 30px;
}

/* Table form styling */
select.form-control {
    width: 100%;
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    margin-top: 10px;
}

form {
    display: inline;
}

form button {
    margin-top: 5px;
}

/* Status display */
.status-display {
    font-weight: bold;
    color: #343a40;
}
