/* Custom styles to match Ludus theme */
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

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

.order-success {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: 30px;
}

.page-title {
    font-family: 'Times New Roman', serif;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.table {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.table thead {
    background-color: #ff4800;
    color: white;
}

.table th {
    padding: 15px 20px;
    font-weight: 500;
    border-bottom: none;
}

.table td {
    padding: 15px 20px;
    vertical-align: middle;
}

.table tbody tr {
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.2s ease;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

.price-text {
    color: #ff4800;
    font-weight: 500;
}

.shipping-address {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
}

.address-title {
    font-family: 'Times New Roman', serif;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

address {
    font-style: normal;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.customer-name {
    color: #ff4800;
    font-weight: 500;
    font-size: 1.1rem;
}

.btn-continue {
    background-color: #ff4800;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
    display: inline-block;
    margin-top: 20px;
}

.btn-continue:hover {
    background-color: #e64100;
    color: white;
}

.grand-total-row {
    background-color: #ff4800;
    color: white;
    font-weight: 500;
}

.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ff4800;
}