/* Spacedrop Courier Frontend Styles */
.spacedrop-dashboard, .spacedrop-driver-dashboard, .spacedrop-tracking, .spacedrop-tickets {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.spacedrop-dashboard .stats, .spacedrop-driver-dashboard .stats {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.spacedrop-dashboard .stats div, .spacedrop-driver-dashboard .stats div {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
    font-weight: bold;
}
.spacedrop-dashboard form, .spacedrop-driver-dashboard form, #create-shipment {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin-bottom: 30px;
}
.spacedrop-dashboard input, .spacedrop-dashboard select, .spacedrop-dashboard textarea,
.spacedrop-driver-dashboard input, .spacedrop-driver-dashboard select,
#create-shipment input, #create-shipment select, #create-shipment textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.spacedrop-dashboard button, .spacedrop-driver-dashboard button, #create-shipment button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
}
.spacedrop-dashboard button:hover, .spacedrop-driver-dashboard button:hover {
    background: #005a87;
}
#tracking-map, #driver-map {
    height: 400px;
    width: 100%;
    margin-top: 20px;
}
.spacedrop-label {
    padding: 20px;
    border: 1px solid #ccc;
    margin: 10px 0;
    text-align: center;
}
.spacedrop-label img {
    margin: 10px;
}