nav {
    position: relative;
}

.nav-username {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1rem;
}

.dvd-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.dvd-card {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    width: 200px;
}

.alert-danger {
    color: red;
}

.alert-success {
    color: green;
}

.form-text-muted {
    display: block;
    color: gray;
}

.orders-list, .cart-list {
    list-style: none;
    padding: 0;
}

.order-item {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.order-header {
    margin-top: 0;
    font-size: 1.1rem;
    color: #555;
}

.order-id-span {
    font-weight: normal;
    font-size: 0.9rem;
}

.order-items-list {
    list-style: none;
    padding: 0;
}

.order-detail-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.order-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.status-returned {
    color: red;
}

.status-shipped {
    color: green;
}

.status-not-shipped {
    color: orange;
}

.item-actions-container {
    text-align: right;
}

.item-price {
    margin-bottom: 5px;
}

.inline-form {
    margin: 0;
}

.btn-return {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.margin-top-20 {
    margin-top: 20px;
}

.cart-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.cart-total {
    margin-top: 20px;
    font-weight: bold;
}

.cart-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-checkout {
    background-color: #28a745;
    color: white;
}
