/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* General container */
.container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
h4, h5, h6 {
    color: #444;
    font-weight: 600;
}

/* Card styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.order-list {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}

.order-list h5 {
    color: #ff5722;
    font-size: 18px;
}

/* Tables */
.table {
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

.table thead {
    background-color: #ff5722;
    color: #fff;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
}

.table-bordered {
    border: 1px solid #ddd;
}

.table th {
    font-size: 16px;
}

.table td {
    font-size: 14px;
}

/* Order summary styling */
p {
    font-size: 14px;
    margin: 5px 0;
}

hr {
    border: none;
    border-bottom: 1px solid #eee;
    margin: 10px 0;
}

.d-flex {
    display: flex;
    justify-content: space-between;
}

/* Price and totals */
.text-black {
    color: #333;
}

.font-weight-bold {
    font-weight: 700;
}

.shadow-sm {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-footer {
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #ddd;
    text-align: right;
}

.card-footer a {
    background-color: #ff5722;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
}

.card-footer a:hover {
    background-color: #e64a19;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        margin-bottom: 15px;
    }

    .order-list {
        padding: 15px;
    }

    .table {
        font-size: 12px;
    }

    .card-footer {
        text-align: center;
    }
}
