body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #181a1f;
    color: #e0e0e0;
}

.user-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
}

.text-muted { 
    color: #abb2bf !important; 
}

/* Card Styling */
.custom-card {
    background-color: #21252b;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #3e4451;
    margin-bottom: 2rem;
}

.custom-card-header {
    background-color: #282c34;
    color: #61dafb;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #3e4451;
    font-size: 1.1rem;
}

/* Table Styling */
.order-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background-color: #21252b;
}

.order-table th, .order-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #3e4451;
    vertical-align: middle;
    color: #e0e0e0;
}

.order-table th {
    font-weight: 600;
    width: 75%;
}

.order-table tbody tr:hover {
    background-color: #2c313a !important;
}

/* Inputs & Selects */
.form-control.custom-select {
    background-color: #282c34;
    border: 1px solid #3e4451;
    color: #e0e0e0;
    border-radius: 4px;
}

.form-control.custom-select:focus {
    border-color: #61dafb;
    box-shadow: 0 0 0 0.2rem rgba(97, 218, 251, 0.25);
    background-color: #282c34;
    color: #e0e0e0;
}

/* Button Styling */
.receipt-btn {
    background: #282c34;
    color: #61dafb;
    border: 1px solid #61dafb;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.receipt-btn:hover {
    background: #61dafb;
    color: #282c34;
    text-decoration: none;
}

.receipt-btn.download-btn {
    width: auto;
    padding: 10px 30px;
    font-size: 1.1rem;
}

hr.custom-hr {
    border-top: 1px solid #3e4451;
    margin: 1.5rem 0;
}