/* General body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar styling */
.navbar {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

/* Dashboard cards and tables */
.card, .table {
    margin-bottom: 20px;
    border-radius: 0.5rem;
}

/* Chat Box */
#chatBox {
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 400px;
    overflow-y: scroll;
    padding: 10px;
    background-color: #fff;
}

.chat-message {
    margin-bottom: 10px;
}

.chat-message.customer {
    text-align: left;
}

.chat-message.rider {
    text-align: right;
}

.chat-message span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 20px;
    max-width: 70%;
}

.chat-message.customer span {
    background-color: #d1e7dd;
    color: #0f5132;
}

.chat-message.rider span {
    background-color: #cfe2ff;
    color: #084298;
}

/* Buttons */
.btn {
    border-radius: 0.25rem;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
}

/* Forms */
input.form-control, select.form-select {
    border-radius: 0.25rem;
}

/* Responsive tables */
.table-responsive {
    overflow-x: auto;
}

/* Alerts */
.alert {
    border-radius: 0.25rem;
}

/* Payment button */
.btn-pay {
    background-color: #009688;
    color: white;
}

.btn-pay:hover {
    background-color: #00796b;
}

/* Footer placeholder */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

/* Small devices adjustments */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
    }

    h3, h4 {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}
