* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fcf8ec;
    /* Beige - 60% ratio */
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-wrapper {
    background: white;
    padding: 40px;
    border: 1px solid #89758d;
    margin-top: 30px;
    border-radius: 20px;
    /* Rounded corners */
}

/* Navbar compatibility */
.navbar {
    background: #fff;
    margin-bottom: 30px;
    border-bottom: 2px solid #ba1010;
    border-radius: 0 0 15px 15px;
    /* Rounded corners */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ba1010;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    /* No hover underline */
    color: #ba1010;
    font-weight: 600;
}

h1 {
    text-align: center;
    color: #ba1010;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 800;
}

.subtitle {
    text-align: center;
    color: #89758d;
    margin-bottom: 30px;
}

.info-card {
    background: #fff;
    padding: 25px;
    border: 2px solid #f8be2c;
    /* Yellow border */
    margin-bottom: 30px;
    border-radius: 15px;
    /* Rounded corners */
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #fcf8ec;
}

.info-row .label {
    font-weight: bold;
    color: #ba1010;
}

.info-row .value.amount {
    color: #ba1010;
    font-size: 20px;
    font-weight: 900;
}

.orders-table,
.history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 1px solid #89758d;
    border-radius: 12px;
    /* Rounded corners */
    overflow: hidden;
}

.orders-table th,
.history-table th {
    background-color: #ba1010;
    color: white;
    padding: 12px;
    text-align: left;
}

.orders-table td,
.history-table td {
    padding: 12px;
    border-bottom: 1px solid #89758d;
}

.status-select {
    padding: 8px;
    border: 1px solid #89758d;
    border-radius: 8px;
    /* Rounded corners */
}

.btn-view {
    padding: 8px 16px;
    background-color: white;
    color: #ba1010;
    border: 1px solid #ba1010;
    text-decoration: none;
    /* No hover underline */
    cursor: pointer;
    border-radius: 10px;
    /* Rounded corners */
}

.btn-update {
    padding: 8px 16px;
    background-color: #ba1010;
    color: white;
    border: none;
    font-weight: bold;
    text-decoration: none;
    /* No hover underline */
    cursor: pointer;
    border-radius: 10px;
    /* Rounded corners */
}

.links {
    text-align: center;
    margin-top: 30px;
}

.links a {
    color: #ba1010;
    text-decoration: none;
    /* No hover underline */
    font-weight: bold;
}