.sidebar-right {
    right: 0;
    border-left: 1px solid #4a5568;
}

.sidebar-right {
    background-color: #1a202c;
    color: #f7fafc;
}

.cart-item {
    background-color: #2d3748;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #a0aec0;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cart-item-name {
    font-weight: bold;
    color: #f7fafc;
    text-align: center;
    margin-bottom: 8px;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #a0aec0;
    width: 100%;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.cart-item-quantity button {
    background-color: #4a5568;
    border: 1px solid #718096;
    color: #e2e8f0;
    width: 24px;
    height: 24px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.cart-item-quantity input {
    width: 32px;
    text-align: center;
    border: 1px solid #718096;
    background-color: #2d3748;
    color: #e2e8f0;
    margin: 0 4px;
    padding: 2px 0;
}

.cart-item-price {
    font-weight: bold;
    color: #f7fafc;
    margin-top: 4px;
}

.cart-item select {
    height: 24px;
    background-color: #4a5568;
    color: #e2e8f0;
    border: 1px solid #718096;
    padding: 0 4px;
    width: 80px;
}

.cart-item-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: -25px;
}

.cart-item-label {
    width: 40px;
    text-align: right;
    padding-right: 8px;
}

